编写用于基于日期的文件复制的批处理文件
我需要制作一个批处理文件,可以根据参数将文件从一个路径复制到另一个路径。
例如,输入“datecopy -m 8 c:/copyfrom/*.* d:/copyto/*.*”,将查找 c:/copyfrom 中日期小于 8 个月的所有文件,并将它们复制到 d:/复制到文件夹。或者,我可以使用 -h 表示小时或 -y 表示年份,而不是使用 -m 表示月份。
当然,这不是完整的程序,但应该让我开始。感谢您提供任何可能的提示。 :)
I need to make a batch file that can copy files from one path to another based on parameters.
For example, typing "datecopy -m 8 c:/copyfrom/*.* d:/copyto/*.*", would find all files in c:/copyfrom dated less than 8 months old, and copy them to d:/copyto -folder. Alternately, instead of -m for month, I could use -h for hour or -y for year.
That's not the full program of course, but should get me started. Thanks for any potential tips. :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我知道这看起来可能没有回答您的问题,但是通过在 jscript 或 VbScript
最近我一直在研究 Windows Powershell,基本上是速度上的 Windows 脚本。
不过,您可以放心,从 XP 开始(可能从 W2k 开始),Windows 脚本宿主(jscript 和 VBScript)已经存在于 Windows 上。
我的建议是不要使用 Windows 批处理命令。
I know this might not look like it's answering your question, but save yourself more pain and heartache than you can imagine by doing this in jscript or VbScript
Lately I've been looking at Windows Powershell, basically Windows Scripting on speed.
However you can be assured that Windows Script Host (jscript & VBScript) is already on Windows from XP onwards (possibly from W2k onwards).
My advice is to NOT use windows batch commands.
假设您可以组装一组优秀的老式 UNIX 工具,请查看一下
find
实用程序。它有您要求的选项,以及更多。Supposing you can assemble a set of good-old-unix tools, do take a look at the
find
utility. It has the options you ask for, and more.以下脚本将复制 8 个月以上的文件。
lf(列表文件)命令非常灵活。其帮助页面位于 http://www.biterscripting.com/helppages/lf.html。
要运行该脚本,请将脚本复制并粘贴到文件 C:/Scripts/TimedCopy.txt 中,启动 biterscripting 并运行此命令。
timediff 参数的解释
“240000000”表示 240 天、00 小时、00 分钟、00 秒
“120000”表示 12 小时、00 分钟、00 秒
“3000”表示 30 分钟、00 秒
“30”表示 30 秒
等。
(说到日期,我假设您的意思是修改。如果您的意思是创建,请在脚本中使用 $fctime 而不是 $fmtime。)
希望这会有所帮助。
Here is a script that will copy files newer than 8 months.
The lf (list files) command is pretty flexible. Its help page is at http://www.biterscripting.com/helppages/lf.html .
To run the script, copy and paste the script into file C:/Scripts/TimedCopy.txt, start biterscripting and run this command.
Explanation of the timediff argument
"240000000" means 240 days, 00 hours, 00 mins, 00 secs
"120000" means 12 hours, 00 mins, 00 secs
"3000" means 30 mins, 00 secs
"30" means 30 seconds
etc.
(By dated, I assume you mean modified. If you meant created, use $fctime instead of $fmtime in the script.)
Hope this helps.