-
Notifications
You must be signed in to change notification settings - Fork 2
_unlink
bergsma edited this page Sep 26, 2014
·
3 revisions
#unlink
###Delete, remove, or unlink a file.
Syntax
status = unlink filename ;
Arguments
- str filename
The name of the file to unlink.
Return Value
str status
- $ACKNOWLEDGE : The file was successfully unlinked.
The STATUS variable is set to $ACKNOWLEDGE
str status
- $ACKNOWLEDGE : The file was successfully unlinked.
The STATUS variable is set to $ACKNOWLEDGE
Exceptions
- %ARGUMENT: Invalid arguments. Usage: status = unlink filename ;
Description
- None
Examples
puts "Create an example for the function 'unlink'" ;
Related Links
None