Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
557 views
in Technique[技术] by (71.8m points)

sftp - Use path with spaces in batch file using WinSCP

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 FilesWinSCP
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 FilesWinSCP
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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...