python如何随机读取目录文件

  • 来源:网络
  • 更新日期:2020-09-03

摘要:python随机读取目录文件的方法:使用python的模块random argparse shutil,代码为【for x in os.listdir(path),if x.endswith('jpg')】。python随机读取目录文件的方法

python随机读取目录文件的方法:使用python的模块random argparse shutil,代码为【for x in os.listdir(path),if x.endswith('jpg')】。

python随机读取目录文件的方法:

使用python模块:random argparse shutil

import argparse
parser = argparse.ArgumentParser()
parser.add_argument('num',type=int,help="img numbers to random")
args = parser.parse_args()
import random
import os
path="/home/train/disk/data/yulan_park_expand"
imgs = []
for x in os.listdir(path):
    if x.endswith('jpg'):
imgs.append(x)
selected_imgs=random.sample(imgs,k=args.num)
print(selected_imgs)
from shutil import copyfile
for img in selected_imgs:
    src=os.path.join(path,img)
    dst=os.path.join(path,"../for_bitmain/"+img)    
    copyfile(src,dst)
print("copy done")

相关学习推荐:python教程