Python中如何遍歷指定目錄下的所有檔案

2021-06-28 17:12:08 字數 2585 閱讀 5051

1樓:匿名使用者

例如:在c:\tddownload目錄下有a.

txt、b.txt兩個檔案,另有\sub1子資料夾,c:\tddownload\sub1下又有c.

txt、d.txt兩個檔案。

1. os.walk

os.walk()返回一個三元素的tuple:當前路徑、子資料夾名稱、檔案列表。

>>> import os

>>> def fun( path ):

... for root, dirs, files in os.walk( path ):

... for fn in files:

... print root, fn

...>>> fun( r'c:\tddownload' )

c:\tddownload a.txt

c:\tddownload b.txt

c:\tddownload\sub1 c.txt

c:\tddownload\sub1 d.txt

>>>2. glob.glob

glob.glob()只接受一個引數,這個引數既代有路徑,又代有匹配模式,返回值為一個列表。注意,glob.glob()無法直接穿透子資料夾,需要自己處理:

>>> def fun( path ):

... for fn in glob.glob( path + os.sep + '*' ): # '*'代表匹配所有檔案

... if os.path.isdir( fn ): # 如果結果為資料夾

... fun( fn ) # 遞迴

... else:

... print fn

...>>> fun( r'c:\tddownload' )

c:\tddownload\a.txt

c:\tddownload\b.txt

c:\tddownload\sub1\c.txt

c:\tddownload\sub1\d.txt

>>>'*'為匹配模式,代表匹配所有檔案,只有這樣才能將子資料夾查出來,以便遞迴深入,探查下一層的檔案。

2樓:

os.listdir("目錄名") 目錄下所有檔名

python,如何遍歷一個目錄,輸出所有檔名

3樓:

import os

def iterbrowse(path):

for home, dirs, files in os.walk(path):

for filename in files:

yield os.path.join(home, filename)for fullname in iterbrowse("/home/bruce"):

print fullname

4樓:匿名使用者

result:

d:\workspace\pydemo\fas\file1\20141113\a.20141113-1100.log

d:\workspace\pydemo\fas\file1\20141113\a.20141113-1101.log

d:\workspace\pydemo\fas\file1\20141113\a.20141113-1140.log

d:\workspace\pydemo\fas\file2\20141113\a.20141113-1100.log

d:\workspace\pydemo\fas\file2\20141113\a.20141113-1101.log

d:\workspace\pydemo\fas\file2\20141113\a.20141113-1140.log

求通過python實現,在指定目錄下遍歷所有檔案,將以.txt為字尾的檔案移動到另一指定目錄中

5樓:

target_dir = 'home/' #假定要拷貝到home目錄

x = [ item for item in os.walk('.') ] #os.walk遞迴地遍歷所有子資料夾

#返回的是一個list,list中每一個元素由3個部分:(path, dirs, files)

for path, dirs, files in x:

for file in files:

if file.endswith('.txt'): #找到以txt結尾的,copy之

shutil.copy( path+os.sep+file , target_dir )

6樓:匿名使用者

從foldera copy *.txt到folderb:

dira='foldera'

dirb='folderb'

import os, shutil

for i in os.listdir(dira):

if i.endswith('.txt'):

shutil.copy(dira+os.sep+i, dirb+os.sep)

c如何遍歷ini檔案中Section下所有項,很急,謝謝

streamreader sr new streamreader d a.ini encoding.default while sr.peek 0 試試這個看能不能迴圈彈出每行的值,如果可以稍微改下應該就ok了 你好,請問下你是怎麼解決的,我也遇上了這個問題 怎麼遍歷讀取ini檔案的所有節點 ini...

python如何將指定資料夾(包括裡面的內容)copy到指定

使用這個方法 import shutil,errno def copyanything src,dst try shutil.copytree src,dst except oserror as exc python 2.5 if exc.errno errno.enotdir shutil.cop...

中如何畫目錄樹

全部都在檢視的工具欄中呢,但是用其他軟體的話效果會更好些 利用插入 自選圖形,來實現 自選圖形中的線型,虛實粗細可以設定,要線直一線可以按住shift鍵,自選圖形要微移的話,可以按住ctrl鍵,同時利用游標控制來移動即可.做的時候有些麻煩,但是可以做到的.做好後可以再組合一下.其實在word裡也可以...