How to escape path containing spaces

一个人想着一个人 提交于 2019-12-06 21:54:41

问题


To pass a path with spaces to .NET console application you should escape it. Probably not escape but surround with double quotes:

myapp.exe --path C:\Program Files\MyApp`

becomes

new string[] { "--path", "C:\Program", "Files\MyApp" }

but

myapp.exe --path "C:\Program Files\MyApp"

becomes

new string[] { "--path", "C:\Program Files\MyApp" }

and it works fine and you can parse that easily.

I want to extend the set of parameters given with an addition one and start a new process with the resulting set of parameters:

new ProcessStartInfo(
    Assembly.GetEntryAssembly().Location,
    String.Join(" ", Enumerable.Concat(args, new[] { "--flag" })))

This becomes myapp.exe --path C:\Program Files\MyApp --flag where path drops its escaping.

How to workaround it with common solution? (without searching each parameter's value requiring escaping and quoting it manually)


回答1:


I don't think it is possible since the space is the delimiter for CLI arguments so they would need to be escaped.

You could extract this into an extension method quite nicely so you can just run args.Escape() in your code above.

public static string[] Escape(this string[] args)
{
    return args.Select(s => s.Contains(" ") ? string.Format("\"{0}\"", s) : s).ToArray();
}



回答2:


Just quote every parameter. This...

myapp.exe "--path" "C:\Program Files\MyApp" "--flag"

...is a perfectly valid command line and does exactly what you want.



来源:https://stackoverflow.com/questions/3733849/how-to-escape-path-containing-spaces

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