獲取檔案系統中某個目錄下的所有檔案列表。
使用os.listdir()
函式來獲取某個目錄中的檔案列表,比如:
import os
file_name = os.listdir('/users/xz/test')
print(file_name)
['bath.txt', 'test.py', '2.txt', '1.txt', 'cook.txt']
結果會返回目錄中所有檔案列表,包括所有檔案,子目錄,符號鏈結等等。 如果需要通過某種方式過濾資料,可以考慮結合os.path
庫中的一些函式來使用列表推導。比如:
import os.path
names = [name for name in os.listdir('/users/xz/test')
if os.path.isfile(os.path.join('/users/xz/test', name))]
print(names)
['bath.txt', 'test.py', '2.txt', '1.txt', 'cook.txt']
字串的startswith()
和endswith()
方法對於過濾乙個目錄的內容也是很有用的。比如:
pyname = [name for name in os.listdir('/users/xz/test') if name.endswith('.py')]
print(pyname)
['test.py']
對於檔名的匹配,你可能會考慮使用glob
或fnmatch
模組。比如:
import glob
pyname = glob.glob('/users/xz/test/*.py')
print(pyname)
['/users/xz/test/test.py']
from fnmatch import fnmatch
pyname = [name for name in os.listdir('/users/xz/test') if fnmatch(name, '*.py')]
print(pyname)
['test.py']
通過上述的幾種方法,均可以獲取目錄中的檔案列表,但是其返回結果只是目錄中實體名列表而已。
如果想獲取檔案的其他元資料,比如檔案大小,修改時間等等,需要使用到os.path
模組中的函式,或os.stat()
函式來收集資料。比如:
# get file sizes and modification dates
name_sz_dt = [(name, os.path.getsize(name), ar.get(os.path.getmtime(name)).format("yyyy-mm-dd hh:mm:ss"))
for name in pyfile]
for name, sizes, date in name_sz_dt:
print(name, sizes, date)
/users/xz/test/test.py 214 2018-11-29 14:03:02
# alternative: get file metadata
file_metadata = [(name, os.stat(name)) for name in pyfile]
for name, meta in file_metadata:
print(name, meta.st_size, ar.get(meta.st_mtime).format("yyyy-mm-dd hh:mm:ss"))
/users/xz/test/test.py 214 2018-11-29 14:03:02
需要注意的是,有時候在處理檔名編碼問題時,可能會出現一些問題。 通常,函式os.listdir()
返回的實體列表是根據系統預設的檔名編碼進行解碼。 但有時候也會遇到一些不能正常解碼的檔名。 Python3建立目錄資料夾
python對檔案的操作還算是方便的,只需要包含os模組進來,使用相關函式即可實現目錄的建立。os.path.exists path 判斷乙個目錄是否存在 os.makedirs path 多層建立目錄 os.mkdir path 建立目錄 引入模組 import os defmkdir path ...
python3 刪除空資料夾
cmd 比較複雜,用python刪除空資料夾,但一時沒有找到符合的 於是自己寫了一點 import osfolder d folder subdir list os.listdir folder for cur dir in subdir list cur path folder cur dir i...
python3 刪除指定資料夾重複檔案
import os import shutil main path r e 指定你要清理重複檔案的根目錄 main file set all file ii 0 while len main path 0 path path main path.pop print path path main di...