Use path with spaces in batch file using WinSCP

旧街凉风 提交于 2019-12-17 20:59:08

问题


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:


Wrap the path with spaces to double double-quotes:

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

See https://winscp.net/eng/docs/commandline#syntax



来源:https://stackoverflow.com/questions/46154795/use-path-with-spaces-in-batch-file-using-winscp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!