标签: c# winforms path filenames
如何在路径中设置打开“=”的文件?我正在尝试这样做,但它不起作用:
System.Diagnostics.Process.Start("explorer.exe", @"/select, " + @"C:\te=st.srt");
也许“=”可以替换为我的代码中的其他东西吗?
答案 0 :(得分:3)
您需要在命令行中使用引号传递文件名:
@"/select, ""C:\te=st.srt"""