在 Windows 10 上,搜索某个日期范围内拍摄的照片相当容易。但是,我想搜索所有缺少拍摄时间元数据的照片。有什么方法可以做到这一点吗?
答案1
在文件管理器搜索,空字段由一对空方括号表示:
- 点击搜索栏并输入:
拍摄日期:=[]
来源: https://docs.microsoft.com/en-us/windows/win32/search/-search-3x-advancedquerysyntax#query-operators
答案2
对于可交换图像文件格式 (EXIF),您可以尝试外置工具递归地yourphotodir
:
在 Windows 上:
exiftool -p "$directory/$filename" -if "not $exif:all" -r yourphotodir
在 Linux 上 - 单引号:
exiftool -p '$directory/$filename' -if 'not $exif:all' -r yourphotodir