Contents:

 

 

Introduction


News blog


What is Servoy?


Getting Started


Comparison Servoy/VFP


Performance


How-To's

 

Code Reference

 

VFP2Servoy Toolkit

 

 

Contact / feedback

 

 

 

 

 

 

 

 

 

 

 

 

 

 

RD - plugins.file.deleteFolder()



Removes a directory or folder from disk.

 

VFP code example

RD "c:\temp\"         && remove the specified directory from disk

 

Servoy code example

plugins.file.deleteFolder("c:\\temp\\"); // delete folder without warn.
plugins.file.deleteFolder("c:\\temp\\", true); // delete folder with warn.

// alternatively:

globals.RD("c:\\temp\\"); 
globals.RD("c:\\temp\\", true); 
globals.RMDIR("c:\\temp\\"); 
globals.RMDIR("c:\\temp\\", true); 


Note: RD() is a function of the VFP2Servoy Toolkit

 

 

External resources:

 

vfp plugin

 

ServoyWorld 2012 pics

 

Official Servoy website

 

Ken Levy on Servoy

 

Servoy info

 

Servoy Forum

 

Servoy Documentation

 

VisualFoxpro.com © 2010-2012 • All rights reserved • Contact: info@visualfoxpro.com