免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 3744 | 回复: 13
打印 上一主题 下一主题

Python文件操作,菜鸟我写的 [复制链接]

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-05-14 12:19 |只看该作者 |倒序浏览
本帖最后由 mhxy13867806343 于 2013-05-14 13:31 编辑

# -*- 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()
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














   








论坛徽章:
0
2 [报告]
发表于 2013-05-14 13:02 |只看该作者
建议修改帖子,把代码,用专门的代码格式发布,以方便大家看代码。
否则太乱了。。。

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
4 [报告]
发表于 2013-05-14 15:05 |只看该作者
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个又学到了东西

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
5 [报告]
发表于 2013-05-14 15:05 |只看该作者
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个又学到了东西

论坛徽章:
0
6 [报告]
发表于 2013-05-14 17:37 |只看该作者
本帖最后由 crifan 于 2013-05-14 17:38 编辑

“用专门的代码格式发布”
指的是:
发布(或编辑)帖子时
弄成:
  1. 在这里写上你的代码
复制代码
截图给你看:

论坛徽章:
0
9 [报告]
发表于 2013-05-15 17:44 |只看该作者
  1. mport os,os.path,re
  2. # -*- coding:gb2312 -*-

  3. # -*- coding: cp936 -*-

  4. import os,sys,os.path,re,string,shutil,glob#模块
  5. def cj(path):
  6.      '''创建文件夹'''
  7.      path=path.strip()
  8.      path=path.rstrip('\\')
  9.      for lj in path:
  10.          if  ord(lj)>127:
  11.              print'不能创建目录为中文路径'
  12.              quit()
  13.      path1=os.path.exists(path)
  14.      while 1:
  15.          #try:
  16.          #os.makedirs(path)
  17.          if not path1:
  18.              print path+':文件创建成功,请继续!!!'
  19.              break
  20.          else:
  21.              print path+':文件已存在,请继续!!!'
  22.              break
  23.          if not len(path):
  24.              print'错误:没有路径指定= >退出!'
  25.              quit()
  26.      try:
  27.          os.makedirs(path)
  28.      except IOError:
  29.          if not os.path.exist(path):
  30.              raise ('创建文件夹失败.')
  31.      except IOError:
  32.          print '创建文件夹failureDirectory创建失败! = >退出!'
  33.          quit();
  34. def xr1(path2,path4,xr):
  35.      '''写入文件内容'''
  36.      f=open(''.join([path2+'\\'+''.join(path4)+'.'+''.join(raw_input('输入扩展名为:.'))]),'w')
  37.      f.write(xr)
  38.      f.close()
  39.      a=os.walk(path2)
  40.      for i in a:
  41.          print i
  42. def dk(path2,path4):
  43.      count=[]
  44.      f=open(''.join([path2+'\\'+''.join(path4)+''.join('.txt')]),'r')
  45.      for i in f.read():
  46.          print i,
  47.          str(count.append(i))
  48.          f.close()
  49. def rm(src):
  50.      '''删除文件夹'''
  51.      if os.path.isfile(src):
  52.          try:
  53.              os.remove(src)
  54.          except:
  55.              pass
  56.      elif os.path.isdir(src):
  57.          for item in os.listdir(src):
  58.              itemsrc=os.path.join(src,item)
  59.              rm(itemsrc)
  60.          try:
  61.              os.rmdir(src)
  62.          except:
  63.              pass
  64. def  pass1():
  65.      quit()
  66. # Filename: rename.py
  67. import os
  68. # Filename: rename.py
  69. import os
  70. #这部分是网上找的代码,水平有限,主要用了os.path.join(对路径进行合并),os.path.splitext(对驱动和路径 返回元组),os.path.listdir(当前路径),总的来说,对这3个又学到了东西
  71. def BatRename(path):
  72.     filelist = [item for item in os.listdir(path) if os.path.isfile(os.path.join(path,item)) \
  73.                 and os.path.splitext(item)[1] == '.txt']
  74.     for hfile in filelist:
  75.         return os.rename(os.path.join(path, hfile), os.path.join(path, ''.join([os.path.splitext(hfile)[0], '.doc'])))
  76. while 1:
  77.     print '请选择:1:创建,2输入,3:打开,4:删除,5:复制,6重名,7:退出'
  78.     num=raw_input('请输入1~7序号为:')
  79.     if num=='1':
  80.          path2=(raw_input('请创建文件目录为:'))
  81.          cj(path2)
  82.     if num=='2':
  83.          path2=(raw_input('请输入文件目录为:'))
  84.          path4=raw_input('请输入要写入的路径:')
  85.          xr=raw_input('请输入你想要的文件内容:')
  86.          xr1(path2,path4,xr)
  87.     if num=='3':
  88.          path2=(raw_input('请打开文件目录为:'))
  89.          path4=raw_input('请打开要读取的路径:')
  90.          dk(path2,path4)
  91.     if num=='4':
  92.          path2=(raw_input('请删除文件目录为:'))
  93.          path4=raw_input('请打开要删除的文件目录:')
  94.          rm(path2)
  95.     if num=='5':
  96.          srcpath=(raw_input('请打开文件目录为:'))
  97.          dstpath=(raw_input('请输入要复制到目录:'))
  98.          dstpath1=(raw_input('更改文件目录为:'))
  99.          mycopy(srcpath,dstpath,dstpath1)
  100.     if num=='6':
  101.         path=(raw_input('请打开文件目录为:'))
  102.         BatRename(path)
  103.     if num=='7':
  104.          break
复制代码

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
3 [报告]
发表于 2013-05-14 13:24 |只看该作者
回复 2# crifan


    好的,我马上修改下,!

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
7 [报告]
发表于 2013-05-14 18:02 |只看该作者
回复 6# crifan


    学习了,知道怎么做了

论坛徽章:
0
8 [报告]
发表于 2013-05-15 11:44 |只看该作者
这里好像没代码区吧

论坛徽章:
0
10 [报告]
发表于 2013-05-15 17:44 |只看该作者
  1. mport os,os.path,re
  2. # -*- coding:gb2312 -*-

  3. # -*- coding: cp936 -*-

  4. import os,sys,os.path,re,string,shutil,glob#模块
  5. def cj(path):
  6.      '''创建文件夹'''
  7.      path=path.strip()
  8.      path=path.rstrip('\\')
  9.      for lj in path:
  10.          if  ord(lj)>127:
  11.              print'不能创建目录为中文路径'
  12.              quit()
  13.      path1=os.path.exists(path)
  14.      while 1:
  15.          #try:
  16.          #os.makedirs(path)
  17.          if not path1:
  18.              print path+':文件创建成功,请继续!!!'
  19.              break
  20.          else:
  21.              print path+':文件已存在,请继续!!!'
  22.              break
  23.          if not len(path):
  24.              print'错误:没有路径指定= >退出!'
  25.              quit()
  26.      try:
  27.          os.makedirs(path)
  28.      except IOError:
  29.          if not os.path.exist(path):
  30.              raise ('创建文件夹失败.')
  31.      except IOError:
  32.          print '创建文件夹failureDirectory创建失败! = >退出!'
  33.          quit();
  34. def xr1(path2,path4,xr):
  35.      '''写入文件内容'''
  36.      f=open(''.join([path2+'\\'+''.join(path4)+'.'+''.join(raw_input('输入扩展名为:.'))]),'w')
  37.      f.write(xr)
  38.      f.close()
  39.      a=os.walk(path2)
  40.      for i in a:
  41.          print i
  42. def dk(path2,path4):
  43.      count=[]
  44.      f=open(''.join([path2+'\\'+''.join(path4)+''.join('.txt')]),'r')
  45.      for i in f.read():
  46.          print i,
  47.          str(count.append(i))
  48.          f.close()
  49. def rm(src):
  50.      '''删除文件夹'''
  51.      if os.path.isfile(src):
  52.          try:
  53.              os.remove(src)
  54.          except:
  55.              pass
  56.      elif os.path.isdir(src):
  57.          for item in os.listdir(src):
  58.              itemsrc=os.path.join(src,item)
  59.              rm(itemsrc)
  60.          try:
  61.              os.rmdir(src)
  62.          except:
  63.              pass
  64. def  pass1():
  65.      quit()
  66. # Filename: rename.py
  67. import os
  68. # Filename: rename.py
  69. import os
  70. #这部分是网上找的代码,水平有限,主要用了os.path.join(对路径进行合并),os.path.splitext(对驱动和路径 返回元组),os.path.listdir(当前路径),总的来说,对这3个又学到了东西
  71. def BatRename(path):
  72.     filelist = [item for item in os.listdir(path) if os.path.isfile(os.path.join(path,item)) \
  73.                 and os.path.splitext(item)[1] == '.txt']
  74.     for hfile in filelist:
  75.         return os.rename(os.path.join(path, hfile), os.path.join(path, ''.join([os.path.splitext(hfile)[0], '.doc'])))
  76. while 1:
  77.     print '请选择:1:创建,2输入,3:打开,4:删除,5:复制,6重名,7:退出'
  78.     num=raw_input('请输入1~7序号为:')
  79.     if num=='1':
  80.          path2=(raw_input('请创建文件目录为:'))
  81.          cj(path2)
  82.     if num=='2':
  83.          path2=(raw_input('请输入文件目录为:'))
  84.          path4=raw_input('请输入要写入的路径:')
  85.          xr=raw_input('请输入你想要的文件内容:')
  86.          xr1(path2,path4,xr)
  87.     if num=='3':
  88.          path2=(raw_input('请打开文件目录为:'))
  89.          path4=raw_input('请打开要读取的路径:')
  90.          dk(path2,path4)
  91.     if num=='4':
  92.          path2=(raw_input('请删除文件目录为:'))
  93.          path4=raw_input('请打开要删除的文件目录:')
  94.          rm(path2)
  95.     if num=='5':
  96.          srcpath=(raw_input('请打开文件目录为:'))
  97.          dstpath=(raw_input('请输入要复制到目录:'))
  98.          dstpath1=(raw_input('更改文件目录为:'))
  99.          mycopy(srcpath,dstpath,dstpath1)
  100.     if num=='6':
  101.         path=(raw_input('请打开文件目录为:'))
  102.         BatRename(path)
  103.     if num=='7':
  104.          break
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP