Chinaunix首页 | 论坛 | 博客
  • 博客访问: 131066
  • 博文数量: 42
  • 博客积分: 2500
  • 博客等级: 少校
  • 技术积分: 448
  • 用 户 组: 普通用户
  • 注册时间: 2010-05-07 12:02
文章分类
文章存档

2010年(42)

我的朋友

分类: Python/Ruby

2010-12-03 15:58:53

# Filename: CopyPictures.py

import os
import time
from os import listdir
from os.path import isdir
#source = ['/home/swaroop/byte', '/home/swaroop/bin']
source = 'C:\\Program Files\\Coopen\\image\\image_100042'
target_dir 
= 'D:\\My Documents\\My Pictures\\my'
now 
= time.strftime('%Y%m%d')
if isdir(source) != True:
    
print 'Error: source is not a directory'
    exit()
k
=0
filelist 
= listdir(source)
print(filelist)
= 0
for name in filelist :
    
if name.find('jpg'== -1 and name.find('png'== -1 :
        
del(filelist[t])
    t 
= t + 1
print(filelist)
#exit()
for name in filelist :
    srcFilename 
= source + '\\' + name
    srcFilename 
= '"' + srcFilename + '"'
    desFilename 
= target_dir + '\\' + now + '_' + name
    desFilename 
= '"' + desFilename + '"'
    
print 
    copy_command 
= "copy %s %s" % (srcFilename, desFilename)
    
print copy_command
    
if os.system(copy_command) == 0:
        k 
= k + 1
        
print 'Successful backup to copy from', srcFilename, 'to' ,desFilename
    
else:
        
print 'Fail to copy', srcFilename, 'to', desFilename
print 'total copy', k, 'files'
阅读(4426) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~