互联网科技嵌入式编程

python遍历文件

2020-05-01  本文已影响0人  罗蓁蓁

python 操作文件非常简单,却也非常高效!

此次,主要写遍历文件:

#copy the file with directory,and search all of the file's with path
def search_file(src,dst):
    file_list = []
    if src is None:
        raise Exception('source_path is None')
    #if dst is not None:
    #    raise Exception('dest_path has existed')
    print src
    print dst
    shutil.copytree(src,dst)
    for dirpath,dirnames,filenames in os.walk(dst):
        for name in filenames:
            file_list.append(dirpath + '\\' + name)

    return file_list

小小说明

我们操作文件,最好使用shutil这个库,高效方便

而,os.walk也非常好用

小尾巴

出差必备:
买火车票、高铁票、机票,订酒店都打9折的出行工具TRIP,点击注册

优惠购物:
你还在傻傻的原价淘宝吗?来这里领取内部优惠券,折扣力度非常大!点击注册,注册需要邀请码UWD9Q9E。

上一篇下一篇

猜你喜欢

热点阅读