首页 > 代码库 > 删除一定大小的文件
删除一定大小的文件
import os
import os.path
filePath = input(‘Enter filepath : ‘)
size=int(input(‘Enter the max size you want to delete(KB):‘))
#三个参数:分别返回1.父目录 2.所有文件夹名字(不含路径) 3.所有文件名字
for parent ,dirnames , filenames in os.walk(filePath):
# for dirname in dirnames: #这些用不到
# print( ‘parent is :‘+parent) #这些用不到
# print (‘dirname is ‘+ dirname #这些用不到
for filename in filenames:
print(‘parent is :‘ + parent)
print(‘filename is :‘ + filename)
currentPath = os.path.join(parent, filename)
print(‘the fulll name of the file is :‘ + currentPath)
filesize = os.path.getsize(currentPath) / 1024
print(‘the file size is : %.3f KB‘ % (filesize))
if filesize<size:
os.remove(currentPath)
删除一定大小的文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。