如何使用 Go 在 Windows 资源管理器中显示文件?
此命令在命令行中按预期工作:
explorer /select,C:\data\My File.txt
exec.Command()
无论尝试何种参数组合,我都无法使用 Go 的方法获得相同的命令。
这有效:
exec.Command(`explorer`, `/select,C:\data\MyFile.txt`) // SUCCEEDS
但由于文件名中有空格而失败。
exec.Command(`explorer`, `/select,C:\data\My File.txt`) // FAILS
慕运维8079593
相关分类