Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含一系列命令(abc.bat)的批处理文件。我需要将此文件复制到 C:\abc\xyz 文件夹中,复制后我需要从共享位置运行 abc.bat 文件。
复制命令与直接在命令提示符中键入命令相同:
copy abc.bat c:\abc\xyz
如果原始文件位置与运行当前批处理文件的位置不同,请确保包含原始文件位置的路径。
要从另一个批处理文件运行批处理文件,您将使用call关键字。
call
call c:\abc\xyz\abc.bat