码迷,mamicode.com
首页 > 移动开发 > 详细

遍历文件夹并移动其中所有的文件

时间:2014-12-06 16:36:28      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   os   sp   for   java   文件   

import os
import shutil


path = D:\\超级记录片\\JavaSE第三季\\
des = D:\\超级记录片\\JavaSE第三季\\keke\\

d = os.listdir(path)
for i in d:
    if i!=keke:
        nw = path+i+\\
        sw = os.listdir(nw)
        for j in sw:
            jian = nw+j
            if os.path.isfile(jian):
                #print des+j
                shutil.move(jian,des+j)
                print j+   +finished.

 

遍历文件夹并移动其中所有的文件

标签:des   style   blog   color   os   sp   for   java   文件   

原文地址:http://www.cnblogs.com/fish7/p/4148335.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!