我有以下代码将CSV文件分类为类似于创建CSV文件的WAV文件的目录结构:
from __future__ import print_function
import os
import shutil
WAV_FILES_PATH = 'g:\\wav_files\\test007\\'
CSV_FILES_PATH = 'g:\\csv_files\\test007\\'
wav_files_path = os.walk(WAV_FILES_PATH)
csv_files_path = os.walk(CSV_FILES_PATH)
# I'm only interested in CSV files in the root for CSV_FILES_PATH
(csv_root, _, csv_files) = csv_files_path.next()
print('Running ...')
for root, subs, files in wav_files_path:
for file_ in files:
if file_.endswith('wav'):
for csv_file in csv_files:
if(file_.split('.')[0] in csv_file):
src = os.path.join(csv_root, csv_file)
dst = os.path.join(csv_root, root.replace(WAV_FILES_PATH, ''), csv_file)
print('Moving "%s" to "%s" ...' % (src, dst))
shutil.move(src, dst)
WAV_FILES_PATH中有子文件夹包含WAV文件,例如
g:\wav_files\test007\run001\
g:\wav_files\test007\run002\
由于CSV文件位于g:\csv_files\test007
中无序,我想克隆目录结构并将CSV文件移动到正确的文件夹中。最后,我希望有例如g:\csv_files\test007\run001\
包含与g:\wav_files\test007\run001\
中的WAV文件对应的CSV。
问题是shutil.move()
命令让我IOError [Errnor 2]
抱怨DESTINATION不存在。这让我感到困惑,因为我有写入目的地的权限,而shutil.move()声称目标目录不一定存在。
我在这里错过了什么吗?
print()函数正确打印出src和dst。
这是错误输出:
[...]
C:\Python27\lib\shutil.pyc in copyfile(src, dst)
80 raise SpecialFileError("`%s` is a named pipe" % fn)
81
82 with open(src, 'rb') as fsrc:
---> 83 with open(dst, 'wb') as fdst:
84 copyfileobj(fsrc, fdst)
IOError: [Errno 2] No such file or directory: 'g:\\csv_files\\test007\\run001\\recording_at_20140920_083721.csv'
INFO:我将错误抛出部分(with
块)直接添加到我的代码中,并没有抛出错误。现在我自己复制文件并在此后删除它们。
似乎是shutil.move()如何运作的错误。
答案 0 :(得分:0)
我稍微修改了你的代码,我认为它产生了预期的结果。
#dst = os.path.join(csv_root, root.replace(WAV_FILES_PATH, ''), csv_file)
dst = os.path.join(csv_root, root.replace(WAV_FILES_PATH, '')) # Modified
在执行shutil.move()
之前,我还添加了以下逻辑enter code here
if not os.path.exists(dst):
os.makedirs(dst)
希望它也适合你!!!