python os模組學習

2022-08-24 16:45:09 字數 4543 閱讀 9647

python os模組包含普遍的作業系統功能。如果你希望你的程式能夠與平台無關的話,這個模組是尤為重要的。

二、常用方法

1、os.name

輸出字串指示正在使用的平台。如果是window 則用'nt'表示,對於linux/unix使用者,它是'posix'。

2、os.getcwd()

函式得到當前工作目錄,即當前python指令碼工作的目錄路徑。

3、os.listdir()

返回指定目錄下的所有檔案和目錄名。

>>> os.listdir(os.getcwd())

['django', 'dlls', 'doc', 'include', 'lib', 'libs', 'license.txt', 'mysql-python-wininst.log', 'news.txt', 'pil-wininst.log', 'python.exe', 'pythonw.exe', 'readme.txt', 'removemysql-python.exe', 'removepil.exe', 'removesetuptools.exe', 'scripts', 'setuptools-wininst.log', 'tcl', 'tools', 'w9xpopen.exe']

>>>

4、os.remove()

刪除乙個檔案。

5、os.system()

執行shell命令。

>>> os.system('dir')

0>>> os.system('cmd') #啟動dos

6、os.sep 可以取代作業系統特定的路徑分割符。

7、os.linesep字串給出當前平台使用的行終止符

>>> os.linesep

'\r\n' #windows使用'\r\n',linux使用'\n'而mac使用'\r'。

>>> os.sep

'\\' #windows

>>>

8、os.path.split()

函式返回乙個路徑的目錄名和檔名

>>> os.path.split('c:\\python25\\abc.txt')

('c:\\python25', 'abc.txt')

9、os.path.isfile()和os.path.isdir()函式分別檢驗給出的路徑是乙個檔案還是目錄。

>>> os.path.isdir(os.getcwd())

true

>>> os.path.isfile('a.txt')

false

10、os.path.exists

()函式用來檢驗給出的路徑是否真地存在

>>> os.path.exists('c:\\python25\\abc.txt')

false

>>> os.path.exists('c:\\python25')

true

>>>

11、os.path.abspath(name):獲得絕對路徑

12、os.path.normpath(path):規範path字串形式

13、os.path.getsize(name):獲得檔案大小,如果name是目錄返回0l

14、os.path.splitext():分離檔名與副檔名

>>> os.path.splitext('a.txt')

('a', '.txt')

15、os.path.join(path,name):連線目錄與檔名或目錄

>>> os.path.join('c:\\python','a.txt')

'c:\\python\\a.txt'

>>> os.path.join('c:\\python','f1')

'c:\\python\\f1'

>>>

16、os.path.basename(path):返回檔名

>>> os.path.basename('a.txt')

'a.txt'

>>> os.path.basename('c:\\python\\a.txt')

'a.txt'

>>>

17、os.path.dirname(path):返回檔案路徑

>>> os.path.dirname('c:\\python\\a.txt')

'c:\\python'

python os模組包含普遍的作業系統功能。如果你希望你的程式能夠與平台無關的話,這個模組是尤為重要的。

二、常用方法

1、os.name

輸出字串指示正在使用的平台。如果是window 則用'nt'表示,對於linux/unix使用者,它是'posix'。

2、os.getcwd()

函式得到當前工作目錄,即當前python指令碼工作的目錄路徑。

3、os.listdir()

返回指定目錄下的所有檔案和目錄名。

>>> os.listdir(os.getcwd())

['django', 'dlls', 'doc', 'include', 'lib', 'libs', 'license.txt', 'mysql-python-wininst.log', 'news.txt', 'pil-wininst.log', 'python.exe', 'pythonw.exe', 'readme.txt', 'removemysql-python.exe', 'removepil.exe', 'removesetuptools.exe', 'scripts', 'setuptools-wininst.log', 'tcl', 'tools', 'w9xpopen.exe']

>>>

4、os.remove()

刪除乙個檔案。

5、os.system()

執行shell命令。

>>> os.system('dir')

0>>> os.system('cmd') #啟動dos

6、os.sep 可以取代作業系統特定的路徑分割符。

7、os.linesep字串給出當前平台使用的行終止符

>>> os.linesep

'\r\n' #windows使用'\r\n',linux使用'\n'而mac使用'\r'。

>>> os.sep

'\\' #windows

>>>

8、os.path.split()

函式返回乙個路徑的目錄名和檔名

>>> os.path.split('c:\\python25\\abc.txt')

('c:\\python25', 'abc.txt')

9、os.path.isfile()和os.path.isdir()函式分別檢驗給出的路徑是乙個檔案還是目錄。

>>> os.path.isdir(os.getcwd())

true

>>> os.path.isfile('a.txt')

false

10、os.path.exists

()函式用來檢驗給出的路徑是否真地存在

>>> os.path.exists('c:\\python25\\abc.txt')

false

>>> os.path.exists('c:\\python25')

true

>>>

11、os.path.abspath(name):獲得絕對路徑

12、os.path.normpath(path):規範path字串形式

13、os.path.getsize(name):獲得檔案大小,如果name是目錄返回0l

14、os.path.splitext():分離檔名與副檔名

>>> os.path.splitext('a.txt')

('a', '.txt')

15、os.path.join(path,name):連線目錄與檔名或目錄

>>> os.path.join('c:\\python','a.txt')

'c:\\python\\a.txt'

>>> os.path.join('c:\\python','f1')

'c:\\python\\f1'

>>>

16、os.path.basename(path):返回檔名

>>> os.path.basename('a.txt')

'a.txt'

>>> os.path.basename('c:\\python\\a.txt')

'a.txt'

>>>

17、os.path.dirname(path):返回檔案路徑

>>> os.path.dirname('c:\\python\\a.txt')

'c:\\python'

python os模組學習

os模組提供了與作業系統打交道時常用的功能實現,換句話說,要是你想讓你的 跑在不同的操作平台上,這個模組是不可以不掌握的。一.常用方法 1.os.getcwd 返回當前的工作目錄 import os print os.getcwd c users tamarous documents visual ...

python os模組學習

import os 當前檔案所在路徑 print os.getcwd c users ou eclipse workspace python rest api test project 改變當前工作目錄,在其他資料夾下操作檔案常用 os.chdir r c users print os.getcwd...

python os介紹 Python os模組介紹

os模組主要用於執行系統命令 import os os.remname file.txt file1.txt 檔案重新命名 os.remove file1.txt 刪除檔案 os.mkdir test 建立資料夾 os.rmdir test 刪除資料夾 os.sep 可以取代作業系統特定的路徑分割符...