当前位置:  开发笔记 > 编程语言 > 正文

在python中移动字典中的引用文件

如何解决《在python中移动字典中的引用文件》经验,为你挑选了1个好方法。

我在Python中有字典,包括文件的当前和所需路径.

files = {
    'C:\\Users\\a\\A\\A.jpg': 'C:\\Users\\a\\A\\test_a\\A.jpg',
    'C:\\Users\\a\\B\\B.jpg': 'C:\\Users\\a\\B\\test_a\\B.jpg',
    'C:\\Users\\a\\C\\C.jpg': 'C:\\Users\\a\\test_a\\C.jpg'
}

如何使用地图项作为shutil.move()函数的参数?我尝试了几种方法却没有成功.



1> Willem Van O..:

关于什么:

for frm,to in files.items():
    shutil.move(frm,to)

您只需遍历(key,value)字典的元组,并shutil.move在这些元素上调用函数.

我看到的唯一问题是你可能需要先构建目录:否则移动对象可能会失败.您可以通过首先检测os.path.dirname,检测目录是否存在以及是否创建此类目录来执行此操作:

#only if you are not sure the directory exists
for frm,to in files.items():
    directory = os.path.dirname(to)
    os.makedirs(directory,exist_ok=True) #create a directory if it does not exists
    shutil.move(frm,to)

推荐阅读
有风吹过best
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有