135-1821-9792

使用python创建大量的测试小文件

import threading
import random
import string
lock = threading.RLock()

fn = []

def run():
    try:
        f = file(filename,'wb')
        for p in range(1,100):
            salt = ''.join(random.sample(string.ascii_letters + string.digits, 62)) # 随机62位字符串
            f.write(salt)
            f.write("\n")
        lock.acquire()
        f.close()
        lock.release()
    except TypeError:
        pass

for i in range(1,10000000):
    filename = random.randint(1,100000000)
    fn.append(filename)
    if filename not in fn:
       continue 
    else:
        filename = str(filename)
        t = threading.Thread(target=run,args=())
        t.start()

文章标题:使用python创建大量的测试小文件
转载源于:http://wtcwzsj.com/article/jdjioh.html

其他资讯



Copyright © 2009-2022 www.wtcwzsj.com 青羊区广皓图文设计工作室(个体工商户) 版权所有 蜀ICP备19037934号