import os,sys,os.path,re,string,shutil,glob#模块
def cj(path):
'''创建文件夹'''
path=path.strip()
path=path.rstrip('\\')
for lj in path:
if ord(lj)>127:
print'不能创建目录为中文路径'
quit()
path1=os.path.exists(path)
while 1:
#try:
#os.makedirs(path)
if not path1:
print path+':文件创建成功,请继续!!!'
break
else:
print path+':文件已存在,请继续!!!'
break
if not len(path):
print'错误:没有路径指定= >退出!'
quit()
try:
os.makedirs(path)
except IOError:
if not os.path.exist(path):
raise ('创建文件夹失败.')
except IOError:
print '创建文件夹failureDirectory创建失败! = >退出!'
quit();
def xr1(path2,path4,xr):
'''写入文件内容'''
f=open(''.join([path2+'\\'+''.join(path4)+'.'+''.join(raw_input('输入扩展名为:.'))]),'w')
f.write(xr)
f.close()
a=os.walk(path2)
for i in a:
print i
def dk(path2,path4):
count=[]
f=open(''.join([path2+'\\'+''.join(path4)+''.join('.txt')]),'r')
for i in f.read():
print i,
str(count.append(i))
f.close()
def rm(src):
'''删除文件夹'''
if os.path.isfile(src):
try:
os.remove(src)
except:
pass
elif os.path.isdir(src):
for item in os.listdir(src):
itemsrc=os.path.join(src,item)
rm(itemsrc)
try:
os.rmdir(src)
except:
pass
def pass1():
quit()
def mycopy(srcpath,dstpath,dstpath1):
'''复制文件到其他目录下'''
if not os.path.exists(srcpath):
print "srcpath not exist!"
if not os.path.exists(dstpath):
print "dstpath not exist!"
for root,dirs,files in os.walk(srcpath,True):
for eachfile in files:
shutil.copy(os.path.join(root,eachfile),dstpath)
shutil.move(dstpath,dstpath1)
while 1:
print '请选择:1:cj创建,2r1输入,3:dk打开,4:rm删除,5:复制,6:退出'
num=raw_input('请输入1~6序号为:')
if num=='1':
path2=(raw_input('请创建文件目录为:'))
cj(path2)
if num=='2':
path2=(raw_input('请输入文件目录为:'))
path4=raw_input('请输入要写入的路径:')
xr=raw_input('请输入你想要的文件内容:')
xr1(path2,path4,xr)
if num=='3':
path2=(raw_input('请打开文件目录为:'))
path4=raw_input('请打开要读取的路径:')
dk(path2,path4)
if num=='4':
path2=(raw_input('请删除文件目录为:'))
path4=raw_input('请打开要删除的文件目录:')
rm(path2)
if num=='5':
srcpath=(raw_input('请打开文件目录为:'))
dstpath=(raw_input('请输入要复制到目录:'))
dstpath1=(raw_input('更改文件目录为:'))
mycopy(srcpath,dstpath,dstpath1)
if num=='6':
break