5

I have created WinSCP batch file for deleting files on remote server. It's working fine, but it's not working with folder with spaces.

For example, the below batch file is working:

cd C:\Program Files\WinSCP
winscp.com /command ^
    "open sftp://user:pwd@host" ^
    "cd /home/test/Desktop/india" ^
    "rm int.txt" ^ 

but the below batch file is not working

cd C:\Program Files\WinSCP
winscp.com /command ^
    "open sftp://user:pwd@host" ^
    "cd /home/test/Desktop/india & nepal" ^
    "rm int.txt" ^ 

I am not able to delete india & nepal folder file because of space

Can any one give a solution?

1 Answer 1

4

The path with spaces need to be wrapped to double double-quotes:

    "cd ""/home/test/Desktop/india & nepal""" ^

See also Why are some WinSCP scripting commands specified in a batch file not executed/failing?

Sign up to request clarification or add additional context in comments.

1 Comment

hi martin problem with spaces was solved by you. thank you vary much for your support.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.