美文网首页
python shutil 模块

python shutil 模块

作者: 守望者_4036 | 来源:发表于2018-07-23 21:21 被阅读0次

    shutil模块,复制、移动、改名、删除文件

    1.复制。
    shutil.copy(source,destination)
    将source路径处的文件复制到destination处,返回复制后的文件路径字符串。

    shutil.copytree(source,destination)
    复制source文件夹到destination处,返回目的文件夹字符串。

    2.移动。
    shutil.move(source,destibation)
    返回新位置的绝对路径的字符串。

    3.删除。
    `os.unlink(path)'
    删除文件。不可恢复

    shutil.rmtree(path)
    删除文件夹。不可恢复

    send2trash.send2trash(path)
    删除文件和文件夹。可以从回收站里恢复。

    4遍历目录树。
    os.walk(path)
    返回当前文件夹名称、子文件夹名称、包含的文件名称。

    相关文章

      网友评论

          本文标题:python shutil 模块

          本文链接:https://www.haomeiwen.com/subject/geksmftx.html