FUNCTION copyfile(fromname$, toname$)
Issue a OS system call to copy a file.
|
Parameter | Description |
fromname |
The name of the file to be copied. |
toname$ |
The name of the new file to be created as a result of the copy. |
|
FUNCTION makedir(path$)
Create a directory.
|
Parameter | Description |
path$ |
The name of the directory to be created. |
|
FUNCTION makedirs(path$)
Create a directory and all parent directories that do not already exist.
|
Parameter | Description |
path$ |
The name of the directory to be created. |
|
FUNCTION makeserial(name$)
Create a serial (text) file.
|
Parameter | Description |
name$ |
The name of the serial file to be created. |
|