6

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

4

3 回答 3

20

尝试使用

pushd yourdir
filetorun -options
于 2012-09-11T08:53:32.927 回答
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,您将获得所需的输出。但请确保输入的命令正确。

于 2012-09-11T06:35:20.373 回答
1

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

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

干杯

于 2012-09-11T06:19:33.123 回答