如何获取FTP上某个文件的修改时间属性

发布于 2024-08-07 07:27:45 字数 77 浏览 11 评论 0原文

我需要监视 FTP 上的某个文件,一旦更新,我需要从 FTP 获取它。但如何识别是否更新是一个问题。

有人有这方面的经验吗?

I need to monitor a certain file on FTP, once it had been updated, I need to fetch it from FTP. but how to identify whether it's updated or not is a problem.

Does Anybody have any experience on this?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

木落 2024-08-14 07:27:45

您需要发送 LIST 命令。您需要使用正则表达式手动解析结果,因为返回结果没有标准格式。

You need to send a LIST command. You'll need to parse the results manually using regex, since there is no standard format for the return result.

伴我老 2024-08-14 07:27:45

文件修改数据和时间也可以使用 MLST 或 MDTM 命令获取。两者都是 FTP 协议的扩展(不保证在所有服务器上),但至少其中一些受到大多数服务器的支持。这些命令返回标准化格式,不必像 LIST 命令的结果那样进行解析。

请参阅

File modification data and time can be also obtained using a MLST or a MDTM command. Both ones are extensions of FTP protocol (not guaranteed on all servers), but at least some of them is supported by most servers. These commands return standardized format, it has not to be parsed like results of LIST command.

See the more details in this article.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文