我希望我的所有文件都是非格式的:2013-03-31_142436.jpg
即%Y-%m-%d_%H%M%S
我有一个脚本可以重命名,但想先检查文件名是否符合格式。我愿意:
for filename in files:
# check filename not already in file format
filename_without_ext = os.path.splitext(filename)[0];
如何检查filename_without_ext
格式%Y-%m-%d_%H%M%S