您好,登錄后才能下訂單哦!
在Python中,glob模塊用于查找指定路徑下的文件,可以結合多線程或多進程來并行處理多個文件。
例如,可以使用多線程來并行讀取多個文件的內容:
import glob
import threading
def read_file(file):
with open(file, 'r') as f:
content = f.read()
print(content)
files = glob.glob('path/to/files/*.txt')
threads = []
for file in files:
t = threading.Thread(target=read_file, args=(file,))
threads.append(t)
t.start()
for thread in threads:
thread.join()
另外,也可以使用多進程來并行處理多個文件:
import glob
from multiprocessing import Process
def process_file(file):
with open(file, 'r') as f:
content = f.read()
print(content)
files = glob.glob('path/to/files/*.txt')
processes = []
for file in files:
p = Process(target=process_file, args=(file,))
processes.append(p)
p.start()
for process in processes:
process.join()
通過這種方式,可以提高處理大量文件的效率,特別是在處理IO密集型任務時。但需要注意的是,多線程適合IO密集型任務,而多進程適合CPU密集型任務。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。