Batch script to upload file using FTP to a particular folder in remote server -


I am using to upload files using FTP. However, it is being uploaded to the root folder in the server.
Can someone ask me to upload a file on a particular path to a remote server, say '/ current QA'?

Before this line:

  ECHO binary> & Gt; % Order%   

Try adding this line:

  ECHO CD / anything / directory & gt; & Gt; % Command%   

This should enter the desired directory in the remote server (I have not tested it though).

Comments