我编写了一个小脚本来同步两个目录。该脚本允许同步某些文件类型,并允许通过校验和或日期进行文件比较。 比较后,应将复制的文件列表提供给使用 shutil.copy2()模块的文件复制过程。 在各种测试运行中,我发现shutil.copy2的一个奇怪的行为,我没有解决方法:
第一: 如果源是ext3卷并且目标是fat32(记忆棒),则shutil会引发错误。 我认为这是因为shutil.copy2也试图复制元数据,但fat32不支持这一点。但我不知道如何通过try:except:statement。
来捕获此错误第二: 第二个问题更加困难。源和目标都是ext3卷。在源代码上有一些完整的Linux目录树的备份。当我的实用程序尝试同步这些目录树时,脚本将无限循环运行,直到我的系统分区空间不足。 我试图修复此行为并使用stat模块在开始复制过程之前检查源文件是否是常规文件,但它没有帮助。有奇怪行为的问题是/ proc / 661 / fd / 3。也许有更多,但我无法测试,因为我的系统因为尝试复制此文件时的内存消耗而冻结。
我试着找了几天这两个问题的解决方案,我希望她周围熟练的程序员能够支持我。
感谢您的帮助。
这里是我的文件复制程序的代码:
def _filecopy(file_list, from_dir, to_dir, overwrt):
print "Files and directories will be processed: "
for file_tupel in file_list:
source_file_name = from_dir + file_tupel[1] + file_tupel[0]
try:
filemode = os.stat(source_file_name).st_mode
except:
filemode = 33205
if S_ISREG(filemode):
target_dir_name = to_dir + file_tupel[1]
if not os.path.isdir(target_dir_name):
print "Create directory " + target_dir_name
_mkdir(target_dir_name)
target_file_name = target_dir_name + file_tupel[0]
if os.path.isfile(target_file_name) and overwrt == "mark":
name_appendix = "_marked_by_sync_as_different_on_" + time.strftime("%a_%d_%b_%Y_%H-%M-%S", time.localtime())
if target_file_name.find(".") == -1:
new_target_file_name = target_file_name + name_appendix
new_source_file_name = source_file_name + name_appendix
else:
new_target_file_prefix = target_file_name.rpartition(".")[0]
new_target_file_extension = target_file_name.rpartition(".")[2]
new_target_file_name = new_target_file_prefix + name_appendix + "." + new_target_file_extension
new_source_file_prefix = source_file_name.rpartition(".")[0]
new_source_file_name = new_source_file_prefix + name_appendix + "." + new_target_file_extension
print "Rename file " + target_file_name + " in " + new_target_file_name
os.rename(target_file_name, new_target_file_name)
print "Copy file " + new_target_file_name + " to " + new_source_file_name
try:
shutil.copy2(new_target_file_name, new_source_file_name)
except:
print "Could not copy " + new_target_file_name + " to " + new_source_file_name
print "Copy file " + source_file_name + " to " + target_file_name
try:
shutil.copy2(source_file_name, target_file_name)
except:
print "Could not copy " + source_file_name + " to " + target_file_name
else:
print source_file_name + " seems to be no regular file and will not be copied."
按照第1号答案的提示后,shutil,copy2语句变为:
shutil.copyfile(source_file_name, target_file_name)
try:
#try to set permission bits
shutil.copymode(new_target_file_name, new_source_file_name)
except:
print "Permission bits could not be copied"
try:
#try to copy metadata
shutil.copystat(new_target_file_name, new_source_file_name)
except:
print "Metadata could not be copied"
答案 0 :(得分:0)
shutil.copy2()
只是shutil.copy()
,后跟shutil.copystat()
。要解决您的第一个问题,您可能需要复制source of shutil.copy2()
并将copystat()
部分包含在try-except块中。您应该能够找出从错误回溯中捕获的异常。
您可能根本不想复制/proc
文件系统。每当你打电话给我的剧本时,我都会把它排除在外。