使用 PHP 搜索服务器新添加的文件

发布于 2024-11-20 00:34:27 字数 161 浏览 4 评论 0原文

我正在尝试在 php 中编写一个 cronjob 来搜索服务器以查找新上传的文件。每天晚上,服务器都会添加一个 csv 文件,必须将其拉到我的本地服务器,然后插入到我的数据库中。我可以读取 csv 文件,将其插入数据库,以及我这边的其他一切,除了弄清楚如何每晚扫描目录中的新文件。有人对此有什么一般性建议吗?

I'm trying to write a cronjob in php to search a server for newly uploaded files. Every night the server adds a csv file, which must be pulled to my local server, and inserted into my database. I can read the csv file, insert it into the database, and everything else on my end, except figure out how to scan the directory for the new file every night. Does anybody have any general suggestions for going about this?

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

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

发布评论

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

评论(3

烙印 2024-11-27 00:34:27

算法:

  1. 扫描目录,按日期对文件排序,并记录最新文件的日期
  2. 在后续扫描中,将最新文件的日期与记录的日期进行比较
  3. 如果日期较新,则已上传新文件。

Algorithm:

  1. Scan the directory, order files by date, and record the date of the most recent file
  2. On subsequent scans, compare the date of the newest file with the recorded date
  3. If the date is newer, a new file has been uploaded.
狼亦尘 2024-11-27 00:34:27

虽然从技术上讲您可以使用纯 PHP 来完成此操作,但我会使用 find 命令:

$files = explode("\0",`find /path/to/dir -mtime -1 -iname '*.csv' -print0`);

While you can technically do it with bare PHP, I'd go for the find command:

$files = explode("\0",`find /path/to/dir -mtime -1 -iname '*.csv' -print0`);
尹雨沫 2024-11-27 00:34:27

使用 scandir 创建一个包含所有文件的数组 $allFiles。创建另一个包含目录中所有现有文件的数组 $oldFiles。之后,执行 array_diff($allFiles, oldFiles) 将生成一个仅包含新文件的数组。

Using scandir, make an array $allFiles that contains all the files. Create another array $oldFiles containing all the existing files in the directory. After that, performing array_diff($allFiles, oldFiles) will yield an array containing only the new files.

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