一、模組簡介
python os模組包含普遍的作業系統功能,讓你的程式和平台分開。通常用於返回和開啟指定目錄下的所有檔案和目錄名。
二、常用函式
1、os.listdir(path) —– 返回指定目錄下的所有檔案和目錄名
folder = 'rt_html'
for movie_html in os.listdir(folder)
os.listdir(folder_name)---返回路徑下的檔名
2、os.path.join(path,name) —- 鏈結目錄和檔名
folder = 'rt_html'
for movie_html in os.listdir(folder):
with
open (os.path.join(folder,movie_html)) as
file:
3、os.path.exists() —- 函式用來檢驗給出的路徑是否真地存在
os.path
.exists(『c:\python25\abc.txt』)
false
os.path
.exists(『c:\python25』)
true
4、os.makedirs() —- 用於建立目錄
folder_name = 'ebert_reviews'
ifnot
os.path.exists(folder_name):
os.makedirs(folder_name)
Python的os模組簡介
os模組提供了多數作業系統的功能介面函式。當os模組被匯入後,它會自適應於不同的作業系統平台,根據不同的平台進行相應的操作,在python程式設計時,經常和檔案 目錄打交道,這時就離不了os模組,本節內容將對os模組提供的函式進行詳細的解讀 常用的方法如下表所示 序號方法及描述 1os.access...
python模組 OS模組
bin env python coding utf 8 import os print os.name 輸出主機平台 print os.getcwd 輸出當前目錄 print os.listdir os.getcwd 輸出當前目錄的檔案 橫向 for i in os.listdir os.getcw...
python 模組 OS模組
print os.getcwd 輸出 e python workspace 原來 print os.getcwd 輸出 e python workspace 返回上級目錄 os.chdir os.getcwd 輸出 e python 更改 os.chdir r e print os.getcwd 輸...