Deletes a file. A path can be specified.
Syntax |
Description |
---|---|
del("filename"); rm("filename"); |
Deletes the file "filename". This function does not return any data. |
Examples
Deletes a file.
del("project_name.fsp") # deletes the file in the current working directory del("C:\Downloads\project_name.fsp") # deletes the file in a path specified
See Also
List of commands , delete , rm