在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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。