如何打开 Windows 上带有正斜杠的路径?
How to open a path with forward slashes on Windows?
运行 git --exec-path
获取 C:/Program Files/Git/mingw64/libexec/git-core
,我可以在文件资源管理器中打开此路径而不会出现问题。
但是在使用explorer "C:/Program Files/Git/mingw64/libexec/git-core"
时,无法成功打开文件夹,我猜是因为路径中包含正斜杠。
那么,如何在 Windows 上打开一个带有正斜杠的路径?
如果使用 Git Bash,请尝试:
explorer $(cygpath -w $(git --exec-path))
运行 git --exec-path
获取 C:/Program Files/Git/mingw64/libexec/git-core
,我可以在文件资源管理器中打开此路径而不会出现问题。
但是在使用explorer "C:/Program Files/Git/mingw64/libexec/git-core"
时,无法成功打开文件夹,我猜是因为路径中包含正斜杠。
那么,如何在 Windows 上打开一个带有正斜杠的路径?
如果使用 Git Bash,请尝试:
explorer $(cygpath -w $(git --exec-path))