-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfileutil.py
213 lines (183 loc) · 6.6 KB
/
fileutil.py
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
# coding=UTF-8
import os;
import shutil;
import re;
#不管目标目录存不存在都可以 不管是文件复制 还是文件夹复制都可以 但是des 必须是文件夹 不能是文件 否则会抛出异常
def copy(src,des):
if(os.path.exists(src)):
__copy_src_exist(src,des);
else:
raise FileIsNotExist(src+" 不存在 ")
#不管是文件移动 还是文件夹移动都可以 des必须是目录 但是可以不存在 程序自动创建
def move(src,des):
if(os.path.exists(src)):
if(os.path.exists(des)):
if(__pin_jie_name(src,des).strip() != str(src).strip()):
des = __copy_rename(src,des);
shutil.move(src,des);
else:
os.makedirs(des);
shutil.move(src,des);
#它会完成多级目录创建
def makedirs(path):
if(os.path.exists(path)==False):
os.makedirs(path);
else:
print(path+" 已经存在");
#newname 可以加后缀也可以不加后缀 可以加路径 也可以不加 加了会忽略
def rename(oldname,newname):
if(os.path.exists(oldname)):
newlujing,newwenjian = os.path.split(newname);
newwenjian,newhouzhui = os.path.splitext(newwenjian);
oldlujing,oldwenjian = os.path.split(oldname);
oldwenjian,oldhouzhui = os.path.splitext(oldwenjian);
if newhouzhui == "":
newname = newwenjian+oldhouzhui;
else:
newname = newwenjian+newhouzhui;
newname = os.path.join(oldlujing,newname);
newnamebeifen = __avoid_chong_ming(newname);
if(newnamebeifen.strip() != newname.strip() ):
print("rename "+ newname +"已经存在 函数将重新命名为" + newnamebeifen)
os.rename(oldname,newnamebeifen);
print(oldname+" 已经成功被命名为 "+newnamebeifen);
else:
raise FileIsNotExist(oldname+" 不存在 ");
def delete(path):
if(os.path.exists(path)):
if os.path.isfile(path):
os.remove(path)
print (path+" removed!")
elif os.path.isdir(path):
shutil.rmtree(path,True)
print ("dir "+path+" removed!")
else:
raise FileIsNotExist(path+" 不存在 ");
def isDirectory(path):
if not os.path.exists(path):
return None;
return os.path.isdir(path);
def isFile(path):
if not os.path.exists(path):
return None;
return os.path.isfile(path);
def getSeparator():
return os.path.sep;
#~ #----------------------------------------------------------------------
def GetFileList(FindPath,FlagStr=None):
'''
#获取目录中指定的文件名
#>>>FlagStr=['F','EMS','txt'] #要求文件名称中包含这些字符
#>>>FileList=GetFileList(FindPath,FlagStr) #
'''
import os
FileList=[];
FileNames=os.listdir(FindPath)
if (len(FileNames)>0):
for fn in FileNames:
if (FlagStr!=None and len(FlagStr)>0):
#返回指定类型的文件名
if (__IsSubString(FlagStr,fn)):
fullfilename=os.path.join(FindPath,fn)
FileList.append(fullfilename)
else:
#默认直接返回所有文件名
fullfilename=os.path.join(FindPath,fn)
FileList.append(fullfilename)
#对文件名排序
# if (len(FileList)>0):
# FileList.sort()
return FileList
#内部调用
#path表示经过拼凑后的一个路径,是否存在了 与copy_rename的区别,他已经拼凑好了,
#copy_rename没有拼凑
def __avoid_chong_ming(path):
num = 1;
houzhui = "";
while(os.path.exists(path)):
lujing,wenjian = os.path.split(path);
if(os.path.isfile(path)):
wenjian,houzhui = os.path.splitext(wenjian);
wenjian+="("+str(num)+")";
wenjian += houzhui;
path = os.path.join(lujing,wenjian);
num+=1;
return path;
def __IsSubString(SubStrList,Str):
'''''
#判断字符串Str是否符合SubStrList正则表达式
#>>>SubStrList=['F','EMS','txt']
#>>>Str='F06925EMS91.txt'
#>>>__IsSubString(SubStrList,Str)#return True (or False)
'''
flag=True
for substr in SubStrList:
if not re.search(substr, Str):
flag=False
return flag
#内部调用
def __copy_src_exist(src,des):
if(os.path.exists(des) and os.path.isdir(des)):
if(os.path.isfile(src)):
desbeifen = __copy_rename(src,des);
if(desbeifen.strip() == str(des).strip()):
print(des +" 已经存在 重新命名为 "+ desbeifen )
shutil.copy(src,desbeifen);
if(os.path.isdir(src)):
desbeifen = __copy_rename(src,des);
if(desbeifen.strip() == str(des).strip()):
print(des +" 已经存在 重新命名为 "+ desbeifen )
shutil.copytree(src,desbeifen);
if(os.path.exists(des)==False):
os.makedirs(des);
if(os.path.isfile(src)):
shutil.copy(src,des);
if(os.path.isdir(src)):
des = __copy_rename(src,des);
shutil.copytree(src,des);
#内部调用
#des只能是文件夹 如果是文件 则会抛出异常
#表示path的这个路径下最后一层 是否在des这个路径下存在
def __copy_rename(path,des):
num = 1;
houzhui = "";
qian,hou = os.path.split(path);
if(os.path.isfile(des)):
raise FilePathIsNotDirectory(path + " 不是目录而是文件 ");
path = os.path.join(des,hou);
lujing,wenjian = os.path.split(path);
if(os.path.isfile(path)):
wenjian,houzhui = os.path.splitext(wenjian);
while(os.path.exists(path)):
wenjianbei =wenjian +"("+str(num)+")";
wenjianbei += houzhui;
path = os.path.join(lujing,wenjianbei);
num+=1;
return path;
#内部调用 用来拼接路径
def __pin_jie_name(path,des):
qian,hou = os.path.split(path);
if(os.path.isfile(des)):
raise FilePathIsNotDirectory(path + " 不是目录而是文件 ");
path = os.path.join(des,hou);
return path;
class FilePathIsNotDirectory(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
class FileIsNotExist(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
if(__name__ == "__main__"):
a = r"D:\softdata\thunder_xiazai\ADMSetup_v2.0.1.exe";
b = r"D:\ADMSetup_v2.0.1.exe";
c = r"D:\ceshi.pdf";
d = r"d:\jiayou\ceshi1.pdf";
makedirs(d);
a = GetFileList(r"d:"+getSeparator())
for i in a:
if isDirectory(i):
print(i)