function
Library: File system utilities (OMVFS)
Import : omvfs.xmd |
export external function close value file file-ref
Argument definitions
You can use vfs.close
to close a file opened with vfs.open
.
import "omvfs.xmd" prefixed by vfs. process local vfs.file myFile . . . set myFile to vfs.open "foo.txt" . . . vfs.close myFile
Closing an unopened file is allowed.
Closing a previously closed file is allowed.
The following exceptions may occur: