2017-5-25

作者: kevinyings | 来源:发表于2017-05-25 20:17 被阅读0次

    归纳
    1.文件夹的操作 os.listdir("/home/python")
    2.批量修改文件夹

    3.oop,attibute a.b=xx
    4.class ,instance ,object a=b() type(a)
    5.class init ,and new
    6.init ,pass self init(self):
    7.magic method init,str.(print)

    1.shutil.abspath 返回绝对路径
    2.shutil.chown 类似 shell 的 chown
    3.shutil.copyfileobj(fsrc,fdst,[length]) 负数 length 不用块 copy,默认是块 copy,
    如果 fsrc 的文件偏移不为 0,从偏移开始 copy
    4.shutil.copymode copy permission
    5.copystat
    6.copy1,copy2(包含所有 file metadata)
    7.copytree 递归 copy
    8.rmtree 递归删除
    9.move 递归移动

    相关文章

      网友评论

          本文标题:2017-5-25

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