如何更改目录然后运行命令批处理文件?

时间:2012-09-11 06:02:59

标签: batch-file

如何更改批处理文件中的目录,然后在新目录中运行该命令?我有批处理文件来更改目录,但不会运行该命令。它不是exe,它是带有-options的文件。所以基本上我需要更改目录,然后运行保存在字符串中的命令。

3 个答案:

答案 0 :(得分:19)

尝试使用

pushd yourdir
filetorun -options

答案 1 :(得分:2)

我在下面给出了一个示例代码来更改目录并在此之后运行命令。

cd C:\    #Will change the directory to C:
ipconfig  #Will return IP address details(any command can be used here)
pause     #Will prevent command prompt from closing and waits for a keypress

将其另存为批处理文件 filename.bat ,您将获得所需的输出。但请确保输入的命令正确无误。

答案 2 :(得分:1)

"cd"代表"ChangeDirectory"。使用"cd"命令,您可以更改目录。

另见:http://en.wikipedia.org/wiki/Cd_(command

干杯