启动新进程时如何指定带有空格的参数

发布于 2024-12-10 23:50:09 字数 206 浏览 1 评论 0原文

我想使用参数运行一个进程:文件名。

    string parms =  filechooser.Filename ;      
    psi = new ProcessStartInfo("timidity", parms);

当用户选择带有一些空格的文件名时会出现此问题。 我可以用“”传递参数吗?

谢谢

i would like to run a process with the parameter: filename.

    string parms =  filechooser.Filename ;      
    psi = new ProcessStartInfo("timidity", parms);

The problem occur when user choose a filename with some spaces.
Ho can i pass the parameter with the " " ?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

纵山崖 2024-12-17 23:50:09

您可以将该值括在双引号中:

string parameters = string.Format("\"{0}\"", filechooser.Filename);
psi = new ProcessStartInfo("timidity", parameters);

You could wrap the value in double quotes:

string parameters = string.Format("\"{0}\"", filechooser.Filename);
psi = new ProcessStartInfo("timidity", parameters);
梨涡 2024-12-17 23:50:09

这应该可以正常工作,空格也会被传递。

但是,如果您想转义文件名(这取决于正在启动的应用程序,即胆怯),请执行以下操作:

string parms = string.Format("\"{0}\"", filechooser.Filename);
psi = new ProcessStartInfo("timidity", parms);

这将创建一个基于格式 \"{0}\" 的字符串。 \" 成为引号 ("),并且 {0} 将被替换为格式字符串后的第一个参数,即文件名。

您可以使用“开始”、“运行”功能或命令提示符 (cmd.exe) 来尝试此操作。输入 timidity 然后输入完整文件名,带空格,用引号引起来,看看是否有效:

timidity "my filename"

That should work just fine, the spaces will be passed too.

However if you want to escape the filename (which depends on the app being started, i.e. timidity), do this:

string parms = string.Format("\"{0}\"", filechooser.Filename);
psi = new ProcessStartInfo("timidity", parms);

This will create a string based on the format \"{0}\". \" becomes a quote (") and {0} will be replaced with the first parameter after the format string, i.e. the filename.

You can try this out using the Start, Run feature or command prompt (cmd.exe). Enter timidity then your full filename, with spaces, in quotes and see if that works:

timidity "my filename"
橘香 2024-12-17 23:50:09

试试这个。

string parms =  filechooser.Filename ;      
psi = new ProcessStartInfo("timidity", "\"" + parms + "\"");

Try this.

string parms =  filechooser.Filename ;      
psi = new ProcessStartInfo("timidity", "\"" + parms + "\"");
会发光的星星闪亮亮i 2024-12-17 23:50:09

反斜杠是你的朋友:

"\"timidity\""

Backslash is your friend:

"\"timidity\""
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文