《Python编程快速上手》第9.8.1实践练习

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《Python编程快速上手》第9.8.1实践练习相关的知识,希望对你有一定的参考价值。

#!python3
#9.8.1
#遍历目录树,查找特定扩展名的文件(自定义)
#and把查找到的文件,copy到新文件夹
import os,shutil

file_dir=input("输入要查找的目录:")
file_dir=os.path.abspath(file_dir)
file_list=[]
if not os.path.exists(file_dir):
    print("目录不存在")
else:
    file_type=input("输入要查找文件类型的扩展名(如.pdf或.jpg):")
    file_type=file_type.lower()
    for folder,subfolders,files in os.walk(file_dir):
        for fi in files:
            if fi.lower().endswith(file_type):
                file_list.append( os.path.join(folder,fi))
#复制
destination=input("输入要存放文件的目录:")
destination=os.path.abspath(destination)
if  not  os.path.exists(destination):
    print("目录不存在")
else:
    for file in file_list:
        #未检测重复覆盖
        shutil.copy(file,destination)
print("End")

"""
#9.8.2
指定目录,遍历,查找大于100MB的,可用os.path.getsize()
些文件的abspath输出
"""
import os

ch_path=input("输入要查找的目录:")
absdir=os.path.abspath(ch_path)

for a,b,c in os.walk(absdir):
    for file in c:
        file_path=os.path.join(a,file)
        size=os.path.getsize(file_path)/1024**2
        if size>100:
            print("file is {}, {:.2f}M".format(file_path,size))

以上是关于《Python编程快速上手》第9.8.1实践练习的主要内容,如果未能解决你的问题,请参考以下文章

python编程快速上手之第9章实践项目参考答案(9.8.1)

《Python编程快速上手》第7.18.2实践练习

《Python编程快速上手》第7.18.1实践练习

《Python编程快速上手》第8.9.3实践练习

《Python编程快速上手》第9.8.3实践练习

Python 编程快速上手 让繁琐工作自动化-第九章实践项目 9.8.1选择性拷贝