我有多个看起来像folder.0
和folder.1
. 在每个文件夹'junk'
中都有一个文件(
这是我正在尝试做的事情:.0
.1
inDirec = '/foobar'
outDirec = '/complete/foobar'
for root, dirs,files in os.walk(inDirec):
for file in files:
if file =='junk'
d = os.path.split(root)[1]
filename, iterator = os.path.splitext(d) # folder no. captured
os.rename(file, iterator+file) # change name to include folder no.
fullpath = os.path.join(root,file)
shutil.copy(fullpath,outDirec)
这将返回:
os.rename(file,iterator+file)
OSError: [Errno 2] No such file or directory
我什至不确定我应该使用 os.rename。我只想将它们拉出files == 'junk'
并将它们复制到一个目录中,但它们都具有完全相同的名称。所以我真的只需要重命名它们,这样它们就可以存在于同一个目录中。有什么帮助吗?
更新
for root, dirs,files in os.walk(inDirec):
for file in files:
if file =='junk'
d = os.path.split(root)[1]
filename, iterator = os.path.splitext(d) # folder no. captured
it = iterator[-1] # iterator began with a '.'
shutil.copy(os.path.join(root,file),os.path.join(outDirec,it+file))