我希望使用 Python 遍历文件夹中的所有文件并exiftool
在每个文件上运行命令,所以最后我应该有x
大量文件,每个文件都有自己的exiftool
输出来运行grep
命令。
目前我有这段代码(我是用我在讲座中记下的伪代码制作的,所以它可能不那么准确)
#!/usr/bin/python
import os
import subprocess
import sys
for root,dirs,files in os.walk(".", topdown=False):
for name in files:
print("echo", os.path.join(root, name))
subprocess.call(["exiftool", os.path.join(root, name)])