1.重命名:os.rename(old, new) 2.刪除:os.remove(file) 3.列出目錄下的文件:os.listdir(path) 4.獲取當前工作目錄:os.getcwd() 5.改變工作目錄:os.chdir(newdir) 6.創建多級目錄:os.makedirs(r"c:\ ...
1.重命名:os.rename(old, new)
2.刪除:os.remove(file)
3.列出目錄下的文件:os.listdir(path)
4.獲取當前工作目錄:os.getcwd()
5.改變工作目錄:os.chdir(newdir)
6.創建多級目錄:os.makedirs(r"c:\python\test")
7.創建單個目錄:os.mkdir("test")
8.刪除多個目錄:os.removedirs(r"c:\python") #刪除所給路徑最後一個目錄下所有空目錄。
9.刪除單個目錄:os.rmdir("test")
10.獲取文件屬性:os.stat(file)
11.修改文件許可權與時間戳:os.chmod(file)
12.執行操作系統命令:os.system("dir")
13.啟動新進程:os.exec(), os.execvp()
14.在後臺執行程式:osspawnv()
15.終止當前進程:os.exit(), os._exit()
16.分離文件名:os.path.split(r"c:\python\hello.py") --> ("c:\\python", "hello.py")
17.分離擴展名:os.path.splitext(r"c:\python\hello.py") --> ("c:\\python\\hello", ".py")
18.獲取路徑名:os.path.dirname(r"c:\python\hello.py") --> "c:\\python"
19.獲取文件名:os.path.basename(r"r:\python\hello.py") --> "hello.py"
20.判斷文件是否存在:os.path.exists(r"c:\python\hello.py") --> True
21.判斷是否是絕對路徑:os.path.isabs(r".\python\") --> False
22.判斷是否是目錄:os.path.isdir(r"c:\python") --> True
23.判斷是否是文件:os.path.isfile(r"c:\python\hello.py") --> True
24.判斷是否是鏈接文件:os.path.islink(r"c:\python\hello.py") --> False
25.獲取文件大小:os.path.getsize(filename)
26.*******:os.ismount("c:\\") --> True
27.搜索目錄下的所有文件:os.path.walk()
[2.shutil]
1.複製單個文件:shultil.copy(oldfile, newfle)
2.複製整個目錄樹:shultil.copytree(r".\setup", r".\backup")
3.刪除整個目錄樹:shultil.rmtree(r".\backup")
[3.tempfile]
1.創建一個唯一的臨時文件:tempfile.mktemp() --> filename
2.打開臨時文件:tempfile.TemporaryFile()
[4.StringIO] #cStringIO是StringIO模塊的快速實現模塊
1.創建記憶體文件並寫入初始數據:f = StringIO.StringIO("Hello world!")
2.讀入記憶體文件數據:print f.read() #或print f.getvalue() --> Hello world!
3.想記憶體文件寫入數據:f.write("Good day!")
4.關閉記憶體文件:f.close()
[5.glob]
1.匹配文件:glob.glob(r"c:\python\*.py")