python文件操作(路径、移动、复制、目录) os、shutil 模块
import os
import shutil
os.listdir('path')
os.walk(top,topdown=True,onerror=None)
os.path.join(path, name)
os.path.basename(path)
os.path.dirname(path)
os.path.getsize(name)
os.path.abspath(name)
os.path.normpath(path)
os.mkdir('dir')
os.makedirs(path)
os.mknod("file")
open("file", 'w')
os.rmdir("dir")
shutil.rmtree("dir")
os.remove("file")
os.rename("oldname", "newname")
shutil.move("oldpos", "newpos")
os.renames(old, new)
shutil.copyfile("oldfile", "newfile")
shutil.copy("oldfile", "newfile")
shutil.copytree( olddir, newdir, True/Flase)
shutil.copymode( src, dst)
shutil.copystat( src, dst)
os.getcwd()
os.chdir("path")
os.path.exists("goal")
os.path.isdir("goal")
os.path.isfile("goal")
os.system(command)