Onetastic Macro Documentation >
>
>
FileSystem_DeleteFile FileSystem_DeleteFile
Deletes a file. Returns true for success and false for failure.
Syntax
Bool FileSystem_DeleteFile(File|String file)
Parameters
- File|String file
- File to delete. This can either be a File object or a String that contains the full path to the file.
Examples
Copied!
FileSystem_DeleteFile("c:\\temp\\1.txt")
|