- 论坛徽章:
- 1
|
import os,os.path,re
# -*- coding:gb2312 -*-
# -*- coding: cp936 -*-
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()
# Filename: rename.py
import os
# Filename: rename.py
import os
#这部分是网上找的代码,水平有限,主要用了os.path.join(对路径进行合并),os.path.splitext(对驱动和路径 返回元组),os.path.listdir(当前路径),总的来说,对这3个又学到了东西
def BatRename(path):
filelist = [item for item in os.listdir(path) if os.path.isfile(os.path.join(path,item)) \
and os.path.splitext(item)[1] == '.txt']
for hfile in filelist:
return os.rename(os.path.join(path, hfile), os.path.join(path, ''.join([os.path.splitext(hfile)[0], '.doc'])))
while 1:
print '请选择:1:创建,2输入,3:打开,4:删除,5:复制,6重名,7:退出'
num=raw_input('请输入1~7序号为:')
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':
path=(raw_input('请打开文件目录为:'))
BatRename(path)
if num=='7':
break
修改后,#这部分是网上找的代码,水平有限,主要用了os.path.join(对路径进行合并),os.path.splitext(对驱动和路径 返回元组),os.path.listdir(当前路径),总的来说,对这3个又学到了东西
|
|