Chinaunix

标题: Python文件操作,菜鸟我写的 [打印本页]

作者: mhxy13867806343    时间: 2013-05-14 12:19
标题: Python文件操作,菜鸟我写的
本帖最后由 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














   









作者: crifan    时间: 2013-05-14 13:02
建议修改帖子,把代码,用专门的代码格式发布,以方便大家看代码。
否则太乱了。。。
作者: mhxy13867806343    时间: 2013-05-14 13:24
回复 2# crifan


    好的,我马上修改下,!
作者: mhxy13867806343    时间: 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个又学到了东西

作者: mhxy13867806343    时间: 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个又学到了东西

作者: crifan    时间: 2013-05-14 17:37
本帖最后由 crifan 于 2013-05-14 17:38 编辑

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

作者: mhxy13867806343    时间: 2013-05-14 18:02
回复 6# crifan


    学习了,知道怎么做了
作者: lastexile    时间: 2013-05-15 11:44
这里好像没代码区吧
作者: kala_fly    时间: 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
复制代码

作者: kala_fly    时间: 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
复制代码

作者: GhostFromHeaven    时间: 2013-05-15 23:10
本帖最后由 GhostFromHeaven 于 2013-05-15 23:13 编辑

1、写的好复杂,请考虑简化
2、文件和文件夹的操作是不同的,可以考虑用不同的函数处理(函数的单一责任原则,SRP)
  1. def rm(src):
  2.     os.remove(src)

  3. def rmdir(src):
  4.     for item in os.listdir(src):
  5.         itemsrc=os.path.join(src,item)
  6.         if os.path.isfile(itemsrc):
  7.             rm(itemsrc)
  8.         else:
  9.             rmdir(itemsrc)
  10.             os.rmdir(itemsrc)
复制代码

作者: hothat007    时间: 2013-05-17 23:21
楼主是用什么编译器呀
作者: mhxy13867806343    时间: 2013-05-18 19:39
回复 12# hothat007

现在还在学习中,只能用自带的,等工作的都换其他的

   
作者: howge    时间: 2013-05-20 13:29
果然很菜




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2