创建批量文件以进行移动压缩和删除
只是想知道是否有人知道如何创建批量文件将文件从一个位置移动到另一个位置,压缩正在移动的文件(withwinzip),然后每月删除原始文件?
非常感谢
迈克尔·奥塞
Just wondering if anyone knows how to create a batch to file move files from one location to another, compresses the files(withwinzip) being moved and then delete the orginal files every month??
Many Thanks
Michael Osei
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果要使用 WinZip 压缩文件,请首先安装 WinZip 命令行支持附加组件。该附加组件附带文档,准确显示如何通过批处理脚本使用该工具。
要从批处理脚本中删除文件,请使用 删除命令。要从批处理脚本中删除目录,请使用 rmdir 命令。
要每月运行一次脚本,请创建一个计划任务。
If you want to use WinZip to compress the files, first install the WinZip Command Line Support Add-On. The add-on comes with documentation that shows exactly how to use the tool from a batch script.
To delete files from a batch script, use the del command. To delete directories from a batch script, use the rmdir command.
To run the script once a month, create a Scheduled Task.