BeakerCleanup似乎不适用于Zope,因为它需要.ini或.cfg文件格式。
BeakerSession参数包含在zope.conf文件中,显然这不能在$ <environment>/bin/paster call beaker.scripts.cleanup:cleanup path/to/config.cfg 4h
中使用。
是否有人能够与Zope合作?
答案 0 :(得分:0)
另一种方法是设置一个cron作业来删除超过指定时间段的目录/文件。
示例:
find <folder_path> -mmin +120 -exec rm -rf {} \;
上述行将删除指定目录中超过120分钟的文件。