我无法编写升序编号的文件,这些文件在系统重新启动后一直在滴答作响。我对此没有任何经验
我已尝试遵循此指南: Python: How do I create sequential file names?
他建议像这样检查目录:
import os
def numbers( path ):
for filename in os.listdir(path):
name, _ = os.path.splitext()
yield int(name[4:])
count = max( numbers( '/path/to/files' ) )
count += 1
我试图像这样将其写入我的代码中
import os
picPath = "/home/pi/Desktop/images/"
def numbers( picPath ):
for filename in os.listdir(picPath):
name, _ = os.path.splitext()
yield int(name[4:])
count = max( numbers( picPath ) )
count += 1
我希望能够重新启动RPi并继续以升序编号保存图像文件
非常感谢您的帮助!打我澄清的问题
编辑: 我期望200kB左右的2000个图像文件1000x1000像素。如果有一种更快速的方法而不检查整个目录,我非常感兴趣!