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.
如何编写 Windows 批处理脚本以根据服务器名称等变量将一些文件和文件夹从位置 A 复制到 B?
使用文本编辑器(例如 Windows 内置记事本)将您在命令行中键入的命令存储在文件中。使用扩展名“.bat”或“.cmd”保存该文件。
您可能想要使用的命令是“copy”或“xcopy”。您可以通过使用“/?”调用它们来了解有关如何调用它们的更多信息。例子:
copy /?
要了解有关环境变量的更多信息,请尝试:
set /?