Hello Experts,
I am trying to execute a Proxy to File Scenario, where two files has been created in target FTP folder by two separate communication channel. After creation of second file, first file will be deleted by Command Line batch file.
I have used the below batch file to achieve this. But unable to delete the file.
.............................................................................................................
open 192.168.135.22
FTP_User
FTP_PWD
delete /F /S /Q /A "MAGIC\FLG.txt"
quit
.............................................................................................................
Could you please suggest what changes need to be done so that i can delete the first file from FTP location.