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.
我需要找到以 API 生成的序列号 + YYYYMMDD 后跟 API 时间戳数据命名的文件。
例子:
send0167663112011110414150180.xml --Created 20111104 send0148402292010121812300296.xml --Created 20101218 send0152858682009032013000173.xml --Created 20090320
提前谢谢了。
您没有指定您正在尝试使用哪种语言。如果您使用的是 c#,请在感兴趣的目录上使用 DirectoryInfo.GetFiles,并使用“FileInfo”获取目录内文件的文件信息,并检查“名称”并与您想要的内容进行比较。
这将找到以日期结尾并满足其他条件的文件。
date=20111104 find -type -f -name "*$date" -mtime +142 -exec ls -ltr {} \;