Word命令行参数空间问题

发布于 2024-12-03 08:06:36 字数 408 浏览 0 评论 0原文

我想将参数传递给 winword,以便使用 Environment.GetCommandLineArgs() 在我的 vsto 插件中读取它。

如果参数值包含空格,我将无法转义字符串。

这是工作:

winword.exe /myVar1:C:\folder\whatever1.doc /myVar2:C:\folder\somethingelese.txt C:\example.doc

这是不工作:

winword.exe /myVar1:"C:\folder with space\whatever1.doc" /myVar2:"C:\folder with space 2\somethingelese.txt" C:\example.doc

I want to pass parameters to winword in order to read it in my vsto addin by using Environment.GetCommandLineArgs().

If a parameter-value contains a space I'm not able to escape the strings.

This is working:

winword.exe /myVar1:C:\folder\whatever1.doc /myVar2:C:\folder\somethingelese.txt C:\example.doc

This is not working:

winword.exe /myVar1:"C:\folder with space\whatever1.doc" /myVar2:"C:\folder with space 2\somethingelese.txt" C:\example.doc

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

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

发布评论

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

评论(1

挽清梦 2024-12-10 08:06:36

尝试使用以下命令:

winword.exe "/myVar1:C:\folder with space\whatever1.doc" "/myVar2:C:\folder with space 2\somethingelese.txt" C:\example.doc

如果仍然不起作用,请将 GetCommandLineArgs 返回的数组的内容发送给我们。

Try with the following command :

winword.exe "/myVar1:C:\folder with space\whatever1.doc" "/myVar2:C:\folder with space 2\somethingelese.txt" C:\example.doc

If it still doesn't work, send us the content of the array returned by GetCommandLineArgs.

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