使用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://csdahua.cn/article/jdjioh.html
扫二维码与项目经理沟通

我们在微信上24小时期待你的声音

解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流