Get files in subfolders and delete after copy, but leave folder structure?
Hi all. I've been scouring the forums for days but have not been able to find the answer I'm looking for. I have a working script that traverses all the sub-folders in a root folder, gets the files, and then deletes all files that were transferred, but it also deletes the folder structure on the SFTP site.
Is it possible to leave the folder structure and only delete the files that were transferred?
Here's the script I'm using now.
Thanks
Is it possible to leave the folder structure and only delete the files that were transferred?
Here's the script I'm using now.
"option batch continue" ^ "option confirm off" ^ "get -transfer=binary -delete -filemask=*.docx * .\" ^ "close" ^ "exit"
Thanks