请教一个BAT 问题

发布于 2022-08-15 07:44:51 字数 2399 浏览 13 评论 0

现在有一个FTP 自动上传的BAT脚本,每天早晚分别上传不同的两个文件。现在想通过下午上传文件后自动把删除掉FTP上一周前的文件给删掉,只保留最近一周的,能不能实现。
文件格式如下。

  1. 008-11-25  11:32         1,131,266 posSeller_2008-12-12早.BAK
  2. 008-11-25  11:32         1,131,266 posSeller_2008-12-12晚.BAK
  3. 008-11-25  11:32         1,131,266 posSeller_2008-12-13早.BAK
  4. 008-11-25  11:32         1,131,266 posSeller_2008-12-13晚.BAK
  5. 008-11-25  11:32         1,131,266 posSeller_2008-12-14早.BAK
  6. 008-11-25  11:32         1,131,266 posSeller_2008-12-14晚.BAK
  7. 008-11-25  11:32         1,131,266 posSeller_2008-12-15早.BAK
  8. 008-11-25  11:32         1,131,266 posSeller_2008-12-15晚.BAK

复制代码
每天都会有一个类似这样格式的两个文件
BAT 的脚本如下

  1. @echo off
  2. set dt=%date:~0,10%
  3. if "%time:~0,5%" geq " 7:00" (
  4.   if "%time:~0,5%" lss "12:00" (
  5.     goto _amftp
  6.   ) else if "%time:~0,5%" geq "12:00" (
  7.     if "%time:~0,5%" lss "24:00" (
  8.     goto _pmftp
  9.     )
  10.   )
  11. )
  12. :_amftp
  13. echo nfspos> up.txt
  14. echo nfspos>> up.txt
  15. echo binary>> up.txt
  16. echo hash>> up.txt
  17. echo cd /nfspos/foodcard>> up.txt
  18. echo put posSeller_%dt%早.BAK>> up.txt
  19. echo bye>> up.txt
  20. ftp -i  -s:up.txt  192.10.1.249
  21. del up.txt
  22. goto _end
  23. :_pmftp
  24. echo nfspos> up.txt
  25. echo nfspos>> up.txt
  26. echo binary>> up.txt
  27. echo hash>> up.txt
  28. echo cd /nfspos/foodcard>> up.txt
  29. echo put posSeller_%dt%晚.BAK>> up.txt
  30. echo bye>> up.txt
  31. ftp -i  -s:up.txt  192.10.1.249
  32. del up.txt
  33. goto _end
  34. :_end

复制代码

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文