Remove file script not working
Running a script to delete files which have already been downloaded, but this is not a synch/delete issue. I'm running the following script:
These files are all present ON the FTP server, in the folder indicated. The script is connecting to the server and generating the following output:
This is only one of the five files in the current script, but all five are showing this same set of messates.
Why is it not finding these files in the Remote FTP site? I have confirmed manually that these files exist.
open ftpes://UserID:Password@URL// -Explicit # Change the remote directory cd /XML/Test/Out # add the rm for removing files rm 0000013261_MyCORP_4167343_20160608-190425-989.xml 0000013261_MyCORP_4167763_20160608-200657-159.xml 0000013261_MyCORP_4167764_20160608-200705-959.xml 0000013261_MyCORP_4167765_20160608-200705-993.xml 0000013261_MYCORP_4167766_20160608-200657-186.xml Exit
. 2016-06-13 17:03:56.324 Using FTP protocol. . 2016-06-13 17:03:56.324 Doing startup conversation with host. > 2016-06-13 17:03:56.325 PWD < 2016-06-13 17:03:56.402 257 "/" is current directory. . 2016-06-13 17:03:56.402 Changing directory to "//". > 2016-06-13 17:03:56.402 CWD // < 2016-06-13 17:03:56.452 250 CWD command successful. . 2016-06-13 17:03:56.452 Getting current directory name. > 2016-06-13 17:03:56.452 PWD < 2016-06-13 17:03:56.504 257 "/" is current directory. . 2016-06-13 17:03:56.504 Startup conversation with host finished. < 2016-06-13 17:03:56.504 Script: Active session: [1] UserID@URL > 2016-06-13 17:03:56.504 Script: cd /XML/Test/Out . 2016-06-13 17:03:56.504 Cached directory change via "/XML/Test/Out" to "/XML/Test/Out". . 2016-06-13 17:03:56.504 Getting current directory name. < 2016-06-13 17:03:56.504 Script: /XML/Test/Out > 2016-06-13 17:03:56.504 Script: rm 0000013261_MyCORP_4167343_20160608-190425-989.xml 0000013261_MyCORP_4167763_20160608-200657-159.xml 0000013261_MyCORP_4167764_20160608-200705-959.xml 0000013261_MyCORP_4167765_20160608-200705-993.xml 0000013261_MyCORP_4167766_20160608-200657-186.xml . 2016-06-13 17:03:56.504 Listing file "0000013261_MyCORP_4167343_20160608-190425-989.xml". . 2016-06-13 17:03:56.504 Retrieving file information... > 2016-06-13 17:03:56.504 PWD < 2016-06-13 17:03:56.555 257 "/" is current directory. > 2016-06-13 17:03:56.555 CWD /XML/Test/Out/0000013261_MyCORP_4167343_20160608-190425-989.xml < 2016-06-13 17:03:56.606 550 The filename, directory name, or volume label syntax is incorrect. > 2016-06-13 17:03:56.606 TYPE I < 2016-06-13 17:03:56.656 200 Type set to I. > 2016-06-13 17:03:56.656 SIZE /XML/Test/Out/0000013261_MyCORP_4167343_20160608-190425-989.xml < 2016-06-13 17:03:56.707 213 2911 > 2016-06-13 17:03:56.707 MDTM /XML/Test/Out/0000013261_MyCORP_4167343_20160608-190425-989.xml < 2016-06-13 17:03:56.759 213 20160608190600
Why is it not finding these files in the Remote FTP site? I have confirmed manually that these files exist.