我正在尝试编写一个代码来比较目录(子目录和文件),然后将另一个目录的内容(仅包含子目录中的文件的文件)复制到另一个目录。我导入了所有内容然后我有了这个:
dst = "C:/somefolder"
path = "C:/otherplace"
compare = filecmp.dircmp(path,dst)
ans = compare.right_only
for fil in ans:
if len(ans)>0:
shutil.copy2(dst,path)
我已经尝试过使用os.listdir的其他路由,但我似乎总是出现错误
IOError:[Errno 13]权限被拒绝
这是用python 24编写的
我正在使用cygwin运行我的代码,但我是一个Windows用户