Hi
I bring back the file copy issue.
Is there any way to test the finish of the copying process.
Having this command f.copy(path), can i show a progress for this operation, or at least the beginning and the success of the operation?
on(release)
{
f.copy(path);
if (f.copy(path) in progress)
{
Dialogs.msgBox("copying");
} else {
Dialogs.msgBox("done");
}
}
Thanks
|