delete a file from local drive after successful upload to ftp using batch file
问题 i want to delete file from my local system after successful send to ftp using batch file. for scheduling purpose i m using window scheduler. below is my code which is able to post to ftp.how to delete that successful send to ftp otherwise file shld not delete. %windir%\system32\ftp.exe -s:%~f0 goto done cd C:\ open Host Name user_name password bi put user_input.csv bye :done @echo off cls exit if i will write delete here then it ll delete from remote server.pls suggest me how to do that using