0
移動文件可能重複:
PYTHON: Searching for a file name from an array and then relocating the file排序和在Python
我是新來的Python和真的可以使用一些幫助。我有一大堆我正在排序的圖像。我需要每260張圖片(例如:0,260,520,780等)。然後我需要將這些圖像重新定位到新文件夾。這裏是我的代碼到目前爲止:
import os, os.path, sys, shutil
root = '.'
dst = "/Users/xx/Desktop/newFolder"
print "/////// F I N D__A L L__F I L E S __W I T H I N __R A N G E ///////////////////"
selectPhotos = range(260, 213921)
print selectPhotos[::260]
print "/////// L I S T__O F __A L L __J P E G S ///////////////////"
for files in os.listdir("/Users/xx/Desktop/spaceOddy/"):
#if files.endswith(".jpg"):
# print files
if files.startswith(('00260', '00520', '00780')):
print files
#shutil.copyfile(files, "/Users/xx/Desktop")
shutil.move ("files", dst)
什麼是你的問題? –