Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用Perl比较两个文件(在同一台机器上创建)的修改时间,以了解哪个文件较旧。
我已经尝试过–Mand stat并且由于某种原因结果不一致。这是我尝试过的一个例子:
–M
if ((stat($FileA))[9] < (stat("FileB"))[9]) {
这条线有时有效,但有时结果正好相反(比较应该在秒级别,而不仅仅是天\小时)。
只需修复您的语法错误:将“FileB”替换为 $fileB。