python批量处理文件或文件夹
更新时间:2020年07月28日 14:13:34 作者:祖国的花朵33
这篇文章主要为大家详细介绍了python批量处理文件或文件夹,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了python批量处理文件或文件夹的具体代码,供大家参考,具体内容如下
# -*- coding: utf-8 -*-
import os,shutil
import sys
import numpy as np
##########批量删除不同文件夹下的同名文件夹#############
def arrange_file(dir_path0):
for dirpath,dirnames,filenames in os.walk(dir_path0):
if 'my_result' in dirpath:
# print(dirpath)
shutil.rmtree(dirpath)
##########批量在不同文件夹下新建同名子文件夹并把文件搬移到子文件夹#############
def arrange_file(dir_path0):
for dirpath,dirnames,filenames in os.walk(dir_path0):
for files in filenames:
total_path = os.path.join(dirpath,files)
root_path,file_path = total_path.split(dir_path,1)
if 'png' in file_path:
new_file_path = '.' + file_path[:-9] + 'new_file_name/'
# print(file_path)
# print(new_file_path)
# print(new_file_path + file_path[-9:])
# if not os.path.exists(new_file_path):
# os.makedirs(new_file_path)
# shutil.move('.' + file_path,new_file_path + file_path[-9:])
##########批量删除不同文件夹下符合条件的文件##################
def arrange_file(dir_path0):
for dirpath,dirnames,filenames in os.walk(dir_path0):
for files in filenames:
total_path = os.path.join(dirpath,files)
# print(total_path)
if 'jpg' in total_path and 'labels' in total_path:
img = cv2.imread(total_path)
if np.sum(img) == 0:
print(total_path)
os.remove(total_path)
###########批量把文件搬移到上一层文件夹并删除当前文件夹########
def arrange_file(dir_path0):
for dirpath,dirnames,filenames in os.walk(dir_path0):
for files in filenames:
total_path = os.path.join(dirpath,files)
root_path,file_path = total_path.split(dir_path0,1)
# print(file_path[:-48])
# return 0
if 'jpg' in file_path:
new_file_path = dir_path0 + file_path[:-48]
shutil.move(dir_path0 + file_path,new_file_path + file_path[-9:])
for dirpath,dirnames,filenames in os.walk(dir_path0):
file_path = dirpath.split('./your_total_path')[1]
if 'keywords' in file_path:
# print(dirpath)
shutil.rmtree(dirpath)
if __name__=='__main__':
dir_path0 = './your_total_path'
arrange_file(dir_path0)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
在jupyter notebook中使用pytorch的方法
这篇文章主要介绍了在jupyter notebook中使用pytorch的方法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2022-09-09
python使用Celery构建异步任务队列提高服务器吞吐量及响应速度
这篇文章主要介绍了python使用Celery构建异步任务队列提高服务器吞吐量及响应速度实例探究,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2024-01-01
Python操作dict时避免出现KeyError的几种解决方法
这篇文章主要介绍了Python操作dict时避免出现KeyError的几种解决方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-09-09
Python量化交易实战之使用Resample函数转换“日K”数据
resample函数是Python数据分析库Pandas的方法函数,它主要用于转换时间序列的频次,今天通过本文给大家分享python使用Resample函数转换时间序列的相关知识,感兴趣的朋友一起看看吧2021-06-06
python中断time.sleep一种更优雅的方式:event.wait
这篇文章主要介绍了python中断time.sleep一种更优雅的方式:event.wait,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教2023-11-11


最新评论