使用线程和os.listdir访问多个文件

时间:2018-12-16 08:28:20

标签: python-3.x multithreading

假设文件夹“ images”包含一些图像文件,如何使用2线程在循环内访问2 diff文件。

需要调用一个处理图像的“某些功能”,
thread1->应该获取第一个图像文件
线程2->应该获取第二个图像文件

示例:

python示例代码

for filename in os.listdir("images"):

  thread1=threading.Thread(target="some function", agrs=("images"+filename))

  thread1.start()


  # want to access the second file from os.listdir how can we do that

  thread2 = threading.Thread(target="some function", args=("images"+filename))

  thread2.start()

0 个答案:

没有答案