查找系列中丢失文件的代码
我正在寻找一行代码来识别一系列文件中丢失的文件并将该列表导出到 txt 文件。例如:名为 1to100000 的目录包含名为 1,2...99999,100000 的 pdf 文件,但缺少该系列中的一些文件。我希望脚本将这些丢失的文件报告到 txt 文件。理想情况下,这将是一个可执行的 perl 脚本。 谢谢, 杰克
I'm looking for a line of code that identifies missing files in a series of files and exports that list to a txt file. For example: a directory called 1to100000 contains pdfs named 1,2...99999,100000 but is missing some from the series. I would like the script to report those missing files to a txt file. Ideally this would be an executable perl script.
Thanks,
Jake
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需从 1 数到 100000 并检查文件是否存在。
Just count from 1 to 100000 and check to see if the file exists.
使用readdir:
Using readdir:
以下是查找范围内缺失数字的示例(使用 Set::IntSpan)。
Here is an example of finding missing numbers in a range (Using Set::IntSpan).