2006年08月11日 星期五 17:38
需要写一个脚本,把三天以前的文档删除,文件命名规范为: file_20060811_.jpg. 可以用脚本提取文件名中的时间,问题是如何获得前三天的日期?? 例如今天是20060811,怎样从当前日期获得20060808的日期???日期直接相减吗??? 谢谢各位大侠!
2006年08月11日 星期五 17:52
from datetime import datetime,timedelta start = datetime.now() i = 3 end = start - timedelta(i) 在06-8-11,OnMyWay <nfgz at tom.com> 写道: > > 需要写一个脚本,把三天以前的文档删除,文件命名规范为: file_20060811_.jpg. > > 可以用脚本提取文件名中的时间,问题是如何获得前三天的日期?? > > 例如今天是20060811,怎样从当前日期获得20060808的日期???日期直接相减吗??? > > 谢谢各位大侠! > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060811/314225d1/attachment.htm
2006年08月11日 星期五 17:53
On 8/11/06, OnMyWay <nfgz at tom.com> wrote: > > 需要写一个脚本,把三天以前的文档删除,文件命名规范为: file_20060811_.jpg. > > 可以用脚本提取文件名中的时间,问题是如何获得前三天的日期?? > > 例如今天是20060811,怎样从当前日期获得20060808的日期???日期直接相减吗??? > > 谢谢各位大侠! > > 见python manual中library reference的6.10节,尤其是6.10.4 -- Best Regards, Leo Jay -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060811/e5ec16e0/attachment.html
2006年08月11日 星期五 18:11
On 8/11/06, OnMyWay <nfgz at tom.com> wrote: > 需要写一个脚本,把三天以前的文档删除,文件命名规范为: file_20060811_.jpg. > > 可以用脚本提取文件名中的时间,问题是如何获得前三天的日期?? > > 例如今天是20060811,怎样从当前日期获得20060808的日期???日期直接相减吗??? > > 谢谢各位大侠! 看一下 datetime 模块就知道了^^ > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- """Time is unimportant, only life important! blogging : http://blog.zoomquiet.org/pyblosxom/ wiki enter: http://wiki.woodpecker.org.cn/moin/ZoomQuiet in douban: http://www.douban.com/people/zoomq/ """
Zeuux © 2025
京ICP备05028076号