如何使用批处理文件在Windows Vista cmd中正确设置路径?

发布于 2024-11-08 05:27:11 字数 628 浏览 0 评论 0原文

在编程和一些基本的计算机概念方面,我是一个完全的新手,所以如果我的问题看起来很愚蠢,请耐心等待。

我正在尝试创建一个批处理文件命令,该命令将自动将我重定向到特定目录。发生的情况是,当我调用批处理文件时,它只会显示路径,但仍在同一目录中。我这样做是为了走捷径。

这是每当我打开命令提示符时的默认目录(我不想更改默认目录):

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三生路 2024-11-15 05:27:11

为什么不在

cd C:\Program Files\EasyPHP-5.3.6.0\www\cakephp

.bat 文件中使用 simple: ?

Why don't use simply:

cd C:\Program Files\EasyPHP-5.3.6.0\www\cakephp

inside your .bat file?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文