0

我想连接到我的 ftp 服务器,每天都会创建像“01-26-2011”这样的目录(没有特定的模式,“Jan2011-26”也是一个可能的目录名称)。在这个目录里面又是一些目录。我想编写一个脚本,每 10 分钟检查一次是否创建了新目录。所以我的问题是:如何获取/读取 ftp 目录创建日期?检查它们的最佳方法(有效方法)是什么?

如果我想在我的 ftp 根目录上有 1000 个目录(我的意思是:Jan2011-26、Jan2011-25、Jan2011-24、Jan2011-23、Jan2011-22 等等......)检查每个文件夹会很糟糕(我什至不想要那个)。如果脚本只检查最后 5 个目录(所以只检查 Jan2011-26、Jan2011-25、Jan2011-24、Jan2011-23、Jan2011-22)很好,但它必须检查是否在这 5 个文件夹中创建了任何新目录. 我怎样才能做到这一点?谢谢!

4

1 回答 1

0

Depending on the details you need, you can use FTPLIB To list the directories listing. You could do something like save them to a list and compare in 10 min the 2 sorted lists. You can also digg deeper and search in FTPLIB for any attributes. I don't know much FTPLIB, but here a solution.

于 2011-01-26T13:44:52.323 回答