如何从包含环境变量和 space 的批处理脚本中打开资源管理器 window?

How can I open an explorer window from a batch script that contains both an environment variable and a space?

这个有效:

start %appdata%\Mozilla\Firefox\Profiles\

这些不:

如何使用具有环境变量和 space 的路径打开 Windows 资源管理器 window?

start "Windowtitlewhichcanbebemptyifdesiredbutnotomitted" "%localappdata%\Google\Chrome\User Data\"

您的 start 问题是第一个引用的参数被作为 window 标题处理。试试

start "" "%localappdata%\Google\Chrome\User Data\"

或使用

explorer /e, "%localappdata%\Google\Chrome\User Data"