FileTools
Remove
remove a file from the file system
Calling Sequence
Parameters
Options
Description
Examples
Compatibility
Remove(file, file2, ..., opts)
file1, file2, ...
-
one or more filenames or descriptors
opts
(optional) options as described below
force=one of true or false
The optional argument force controls Remove's behavior when the named file does not exist. If force=false then an error is raised. This is the default behavior. If force=true then no error is raised.
The Remove(file1, file2, ...) command deletes files from the file system.
The Remove function does not return anything.
If file refers to an open file, it is automatically closed and then deleted.
Errors that occur while removing individual files are tagged, and Remove continues until it reaches the end of the list, then throws an error reporting all files that it was unable to remove.
FileTools:-Text:-WriteFile⁡testfile,this is a test
15
FileTools:-Text:-ReadFile⁡testfile
this is a test
FileTools:-Remove⁡testfile
The file "testfile" cannot be read because it has been removed.
Error, (in FileTools:-Text:-ReadFile) file or directory does not exist: testfile
The FileTools[Remove] command was updated in Maple 2023.
The force option was updated in Maple 2023.
See Also
file_types
FileTools[Binary][Close]
FileTools[Binary][Open]
FileTools[Text][Close]
FileTools[Text][Open]
FileTools[Text][ReadLine]
FileTools[Text][WriteLine]
fremove
IO_errors
Download Help Document