DeleteFileFolder

Top  Previous  Next

×V4.0Ø

S

A

W

WS

ü

ü

Syntax -

DeleteFileFolder <Directory>

       Where:

               <Directory> is a string literal or a variable containing a string.

 

Description:

This command is used to delete the folder specified in the literal string <Directory>. <Directory> must be a valid path and folder name that is accessible from the workstation on which EMUE is running.  This path can be local, on a network, or on an FTP server.

 

Note: If the permissions on the directory / folder are not properly set to allow deletion this command will not work.

 

Sample 1:

       The following code will delete the specified folder from the local C: drive.

DeleteFileFolder "C:\EMUE_Test_Folder"

 

Sample 2:

       The following code will delete the specified folder from the network server share.

DeleteFileFolder "\\Server_Share\Network_Test_Folder"

 

Sample 3:

       The following code will delete the specified folder from the FTP server.

DeleteFileFolder "ftp://100.1.10.1/FTP_Folder"