批处理文件复制程序提示用户输入源路径和目标路径
我需要知道如何编写批处理文件来提示用户输入源路径和目标路径。 用户输入路径后,应用程序将复制所有文件/文件夹 从 [SOURCE] 到 [DESTINATION]
- 该解决方案不应要求除源路径和目标路径之外的任何用户输入
- 它应该使用变量系统来包含路径
- 它应该记录复制过程
到目前为止我已经:
xcopy "c:\source" "c:\destination" /e /h /k /o
pause
I need to know how to program a batch file to prompt user for source and destination paths.
Once paths are entered by the user, the application will copy all files/folders
from [SOURCE] to [DESTINATION]
- The solution should not require any user input beyond source and destination paths
- It should use a system of variables to contain the paths
- It should log copy process
So far i have :
xcopy "c:\source" "c:\destination" /e /h /k /o
pause
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Set 命令可以接受用户的输入:
set /p source=输入源路径
。阅读帮助 (
set /?
) 了解更多信息。Set command can take input from user:
set /p source=Enter Source path
.Read help (
set /?
) for more information.