Python os.listdir() 方法
python os.listdir() 方法
os.listdir() 方法用于返回指定的文件夾包含的文件或文件夾的名字的列表。
它不包括 . 和 .. 即使它在文件夾中。
只支持在 unix, windows 下使用。
注意:針對目錄下有中文目錄對情況,python2 需要經過編碼處理,但是在 python3 中不需要已經沒有 unicode() 方法,默認是 utf8 編碼,所以需要轉。
語法
listdir()方法語法格式如下:
os.listdir(path)
參數
- path -- 需要列出的目錄路徑
返回值
返回指定路徑下的文件和文件夾列表。
實例
以下實例演示了 listdir() 方法的使用:
實例
#!/usr/bin/python# -*- coding: utf-8 -*-
import os, sys
# 打開文件
path = "/var/www/html/"
dirs = os.listdir( path )
# 輸出所有文件和文件夾
for file in dirs:
? ?print (file)
執行以上程序輸出結果為:
test.htm stamp faq.htm _vti_txt robots.txt itemlisting resumelisting writing_effective_resume.htm advertisebusiness.htm papers resume
python2 版本針對目錄中存在中文的情況,目錄結構如下:
實例
#!/usr/bin/python# -*- coding: utf-8 -*-
import os
# 打開文件
path = "./git-test"
upath = unicode(path,'utf-8')
dirs = os.listdir( upath )
# 輸出所有文件和文件夾
for file in dirs:
? ? print (file)
執行以上程序輸出結果為:
codebaoku codebaoku-git-test another-codebaoku-name 中文目錄測試
相關文章
- Python 基礎語法
- Python while 循環語句
- Python break 語句
- Python 元組
- Python 函數
- Python 正則表達式
- Python SMTP發送郵件
- Python 二叉樹
- Python 分而治之
- Python 遞歸
- Python 圖算法
- Python3 解釋器
- Python3 數字(Number)
- Python3 列表(List)
- Python3 if else 語句
- Python3 for while 循環語句
- Python3 OS 文件/目錄方法
- Python3 日期和時間
- Python3 內置函數
- Python3 MySQL 數據庫連接 - PyMySQL 驅動