The File-System module contains a number of interfaces that let you perform standard file management operations on files already resident on the filesystem. You can rename, copy, or delete any file, and you can set any available properties for the file.
delete-fileFunction
delete-file file => ()
Function
copy-fileFunction
rename-file old-file new-file #key if-exists => () copy-file old-file new-file #key if-exists => ()
<copy/rename-disposition>. The default behavior is to prompt you before overwriting a file.
Sealed generic function
file-property-setter new-value file key => new-value
#"author" #"size" #"creation-date" #"access-date" #"modification-date" #"write-date" #"readable?" #"writeable?" #"executable?"
file-property-setter), is determined by the value of key. For example, if key is #"readable?", then new-value should be an instance of <boolean>. For full details, see file-property-setter, page 168.