环境变量值中的空格
是否可以将诸如 C:\Program Files
之类的值分配给 PATH
环境变量?空格不会导致错误吗? 我可以使用类似的东西吗:
set ANT_HOME=C:\Program Files\Apache\apache-ant
set PATH=%PATH%;%ANT_HOME%
Is it possible to assign a value like C:\Program Files
to the PATH
environment variable? Wouldn't the whitespace cause an error?
Can I use something like that:
set ANT_HOME=C:\Program Files\Apache\apache-ant
set PATH=%PATH%;%ANT_HOME%
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了关于
EV(环境变量)
永久设置和在EV
值中使用空格的答案。答案在这里: https://superuser .com/questions/289179/set-environment-variables-from-command-line-and-make-them-stick-globally。I found an answer on either
EV (environment variables)
permanent setup and use of a whitespace in theEV
value. The answer is here: https://superuser.com/questions/289179/set-environment-variables-from-command-line-and-make-them-stick-globally.