如何使用批处理文件在Windows Vista cmd中正确设置路径?
在编程和一些基本的计算机概念方面,我是一个完全的新手,所以如果我的问题看起来很愚蠢,请耐心等待。
我正在尝试创建一个批处理文件命令,该命令将自动将我重定向到特定目录。发生的情况是,当我调用批处理文件时,它只会显示路径,但仍在同一目录中。我这样做是为了走捷径。
这是每当我打开命令提示符时的默认目录(我不想更改默认目录):
C:\Users\eacomm>
这是我输入的命令并将其保存为 setpath.bat
:
路径=C:\Program Files\EasyPHP-5.3.6.0\www\cakephp;
这是每当我调用 setpath
并按 ENTER 时的结果:
C:\Users\eacomm>C:\Program Files\EasyPHP-5.3.6.0\www\cakephp;
我想重定向这个...这有什么问题吗???请帮忙...
I am a complete newbie when it comes to programming and some basic computer concepts so pls be patient with me if my question might look so silly.
I am trying to create a batch file command that will automatically redirect me to a particular directory. What happens is that when I call the batch file it will only display the path but still in the same directory. I am doing this for shortcut purposes.
This is the default directory whenever I open my cmd-prompt (I don't want to change the default):
C:\Users\eacomm>
Here's the command that I typed and saved it as setpath.bat
:
path=C:\Program Files\EasyPHP-5.3.6.0\www\cakephp;
Here is the result whenever I call setpath
and hit ENTER:
C:\Users\eacomm>C:\Program Files\EasyPHP-5.3.6.0\www\cakephp;
I want to redirect this one... Whats wrong with this??? Pls help...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不在
.bat 文件中使用 simple: ?
Why don't use simply:
inside your .bat file?