自定义文件夹处理函数(Python)

简介:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#encoding: utf-8
#author: walker
#date: 2017-06-15
#summary: 自定义文件夹处理函数,适用于python3.5+
 
import  os
import  shutil
import  win32com.client
 
#清空目录
def  ClearDir( dir ):
     print ( 'ClearDir '  +  dir  +  '...' )
      
     for  entry  in  os.scandir( dir ):
         if  entry.name.startswith( '.' ):
             continue
         if   entry.is_file():   
             os.remove(entry.path)     #删除文件
         else :                  
             shutil.rmtree(entry.path)     #删除目录
             
#获取目录大小
#不存在或空目录都返回0
def  GetDirSize(pathdir):
     if  not  os.path.exists(pathdir):
         print ( 'Warning: not exists %s'  %  pathdir)
         return  0
     fso  =  win32com.client.Dispatch( 'Scripting.FileSystemObject' )
     folder  =  fso.GetFolder(pathdir)
  
     return  folder.Size
     
'''
# 合并源目录到目标目录,源目录中的空目录不会被处理
# src_dir: 源目录
# dst_dir: 目标目录
# reserve_src: 是否保留源数据
# override: 是否覆盖目标目录中的文件
'''
def  MergeDir(src_root, dst_root, reserve_src = True , override = True ):
     if  ( not  os.path.exists(src_root))  or  ( not  os.path.exists(dst_root)):     #目录不存在
         raise  FileNotFoundError
     for  parent, dirnames, filenames  in  os.walk(src_root):
         for  filename  in  filenames:
             src_file  =  os.path.join(parent, filename)
             dst_file  =  os.path.join(dst_root, src_file[ len (src_root) + 1 :])
             if  os.path.exists(dst_file)  and  ( not  override):          #如果目标文件存在且不能被覆盖
                 continue
             dst_dir  =  os.path.dirname(dst_file)
             if  not  os.path.exists(dst_dir):
                 os.makedirs(dst_dir)
             if  reserve_src :      #保留源数据
                 shutil.copyfile(src_file, dst_file)      #会覆盖目标文件
             else :
                 shutil.move(src_file, dst_file)
     if  not  reserve_src:
         shutil.rmtree(src_root)      #删除源根目录


相关链接:

1、pywin32下载

2、Python文件(夹)基本操作


*** walker ***

本文转自walker snapshot博客51CTO博客,原文链接http://blog.51cto.com/walkerqt/1936982如需转载请自行联系原作者

RQSLT
相关文章
|
1月前
|
Python
【python从入门到精通】-- 第五战:函数大总结
【python从入门到精通】-- 第五战:函数大总结
67 0
|
9天前
|
存储 JSON API
如何自定义Python环境变量?
如何自定义Python环境变量?
21 3
|
1月前
|
Python
Python之函数详解
【10月更文挑战第12天】
Python之函数详解
|
1月前
|
存储 数据安全/隐私保护 索引
|
23天前
|
测试技术 数据安全/隐私保护 Python
探索Python中的装饰器:简化和增强你的函数
【10月更文挑战第24天】在Python编程的海洋中,装饰器是那把可以令你的代码更简洁、更强大的魔法棒。它们不仅能够扩展函数的功能,还能保持代码的整洁性。本文将带你深入了解装饰器的概念、实现方式以及如何通过它们来提升你的代码质量。让我们一起揭开装饰器的神秘面纱,学习如何用它们来打造更加优雅和高效的代码。
|
25天前
|
弹性计算 安全 数据处理
Python高手秘籍:列表推导式与Lambda函数的高效应用
列表推导式和Lambda函数是Python中强大的工具。列表推导式允许在一行代码中生成新列表,而Lambda函数则是用于简单操作的匿名函数。通过示例展示了如何使用这些工具进行数据处理和功能实现,包括生成偶数平方、展平二维列表、按长度排序单词等。这些工具在Python编程中具有高度的灵活性和实用性。
|
28天前
|
Python
python的时间操作time-函数介绍
【10月更文挑战第19天】 python模块time的函数使用介绍和使用。
29 4
|
29天前
|
存储 Python
[oeasy]python038_ range函数_大小写字母的起止范围_start_stop
本文介绍了Python中`range`函数的使用方法及其在生成大小写字母序号范围时的应用。通过示例展示了如何利用`range`和`for`循环输出指定范围内的数字,重点讲解了小写和大写字母对应的ASCII码值范围,并解释了`range`函数的参数(start, stop)以及为何不包括stop值的原因。最后,文章留下了关于为何`range`不包含stop值的问题,留待下一次讨论。
21 1
|
1月前
|
索引 Python
Python中的其他内置函数有哪些
【10月更文挑战第12天】Python中的其他内置函数有哪些
15 1
|
29天前
|
安全 数据处理 数据安全/隐私保护
python中mod函数怎么用
通过这些实例,我们不仅掌握了Python中 `%`运算符的基础用法,还领略了它在解决实际问题中的灵活性和实用性。在诸如云计算服务提供商的技术栈中,类似的数学运算逻辑常被应用于数据处理、安全加密等关键领域,凸显了基础运算符在复杂系统中的不可或缺性。
18 0
下一篇
无影云桌面