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