2017-5-25

2017-05-25  本文已影响0人  kevinyings

归纳
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 递归移动

上一篇下一篇

猜你喜欢

热点阅读