首页 > 其他 > 详细

文件Move操作

时间:2014-06-25 23:22:08      阅读:394      评论:0      收藏:0      [点我收藏+]
#coding = utf-8
import  os

str1 = ‘d:/v3/‘
str2 = ‘d:/v3/‘





fobj = open(‘D:/V3/txt/1.txt‘,‘rb‘)
line = fobj.readline()
while line:
    if(line.find(‘a‘) > 0):
        strsha1 = line.split(‘\\‘)
        strsha1 = strsha1[-1]
       # print str1+strsha1
        os.rename(line, str1+strsha1)
    elif(line.find(‘b‘) > 0):
        strmd5 = line.split(‘\\‘)
        strmd5 = strmd5[-1]
       # print str2+strmd5
        os.rename(line,str2+strmd5)
    else:
        print(line)

    line = fobj.readline()

fobj.close()

  如果报error123错误,则需要添加如下代码

#sometimes filter \n or \r\n
line = line.strip(‘\r\n‘)

  

文件Move操作,布布扣,bubuko.com

文件Move操作

原文:http://www.cnblogs.com/xiaobaichuangtianxia/p/3804372.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!