M
Martin Dashper
I am trying to move a file using:
Set fso = CreateObject("Scripting.FileSystemObject")
fso.movefile "Myfile.txt", "newFolderName\"
and I get a 'Permission denied' error.
Same with:
fso.deletefile
but:
fso.copyfile
works fine and I have full read/write permissions for the source
folder, so why can't I delete the source file?
Martin Dashper
Set fso = CreateObject("Scripting.FileSystemObject")
fso.movefile "Myfile.txt", "newFolderName\"
and I get a 'Permission denied' error.
Same with:
fso.deletefile
but:
fso.copyfile
works fine and I have full read/write permissions for the source
folder, so why can't I delete the source file?
Martin Dashper