FileTotal
(number) The current file's total bytes that will be copied.
The callback function should return a boolean value (true or false) indicating whether the copy operation should continue:
VALUE DESCRIPTION |
|
true |
Continue with the copy operation. |
false |
Stop the copy operation as soon as possible. |
Re t u r n s
Nothing. You can use Application.GetLastError to determine whether this action failed, and why.
See also: Related Actions
File.Delete
OverviewExamples
File.Delete ( string Source,
boolean Recurse = false, boolean AbortOnFail = false, boolean IncludeHiddenFiles = true, function CallbackFunction = nil )
De s cr ip t ion
Deletes a file.
P arame t er s
Source
(string) The path to the file that you want to delete. You can use the * and ? wildcards in this field to delete multiple files.