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