国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

Python實現文件復制刪除

2019-11-25 16:50:15
字體:
來源:轉載
供稿:網友

 用python實現了一個小型的工具。其實只是簡單地把debug 目錄下的配置文件復制到指定目錄,把Release下的生成文件復制到同一指定,過濾掉不需要的文件夾(.svn),然后再往這個指定目錄添加幾個特定的文件。

    這個是我的第一個python小程序。

    下面就來看其代碼的實現。

首先插入必要的庫:

import os import os.path import shutil import time, datetime

然后就是一大堆功能函數。第一個就是把某一目錄下的所有文件復制到指定目錄中:

def copyFiles(sourceDir, targetDir): if sourceDir.find(".svn") >0: return for file in os.listdir(sourceDir): sourceFile = os.path.join(sourceDir, file) targetFile = os.path.join(targetDir, file) if os.path.isfile(sourceFile): if not os.path.exists(targetDir): os.makedirs(targetDir)  if not os.path.exists(targetFile) or(os.path.exists(targetFile) and (os.path.getsize(targetFile) != os.path.getsize(sourceFile))):  open(targetFile, "wb").write(open(sourceFile, "rb").read())  if os.path.isdir(sourceFile):  First_Directory = False  copyFiles(sourceFile, targetFile)

刪除一級目錄下的所有文件:

def removeFileInFirstDir(targetDir): for file in os.listdir(targetDir): targetFile = os.path.join(targetDir, file) if os.path.isfile(targetFile): os.remove(targetFile)

復制一級目錄下的所有文件到指定目錄:

def coverFiles(sourceDir, targetDir): for file in os.listdir(sourceDir): sourceFile = os.path.join(sourceDir, file) targetFile = os.path.join(targetDir, file) #cover the files if os.path.isfile(sourceFile): open(targetFile, "wb").write(open(sourceFile, "rb").read())

復制指定文件到目錄:

def moveFileto(sourceDir, targetDir):
shutil.copy(sourceDir, targetDir)

往指定目錄寫文本文件:

def writeVersionInfo(targetDir): open(targetDir, "wb").write("Revison:")

返回當前的日期,以便在創建指定目錄的時候用:

def getCurTime(): nowTime = time.localtime() year = str(nowTime.tm_year) month = str(nowTime.tm_mon) if len(month) <2: month ='0'+ month day = str(nowTime.tm_yday) if len(day) <2: day ='0'+ day  return (year +'-'+ month +'-'+ day)

然后就是主函數的實現了:

if __name__ =="__main__": print "Start(S) or Quilt(Q) /n" flag = True while (flag): answer = raw_input() if'Q'== answer: flag = False elif 'S'== answer : formatTime = getCurTime()  targetFoldername ="Build "+ formatTime +"-01"  Target_File_Path += targetFoldername  copyFiles(Debug_File_Path, Target_File_Path)  removeFileInFirstDir(Target_File_Path)  coverFiles(Release_File_Path, Target_File_Path)  moveFileto(Firebird_File_Path, Target_File_Path)  moveFileto(AssistantGui_File_Path, Target_File_Path)  writeVersionInfo(Target_File_Path+"http://ReadMe.txt")  print "all sucess"  else:  print "not the correct command"

    感覺是果然簡單, 不過簡單的原因是因為庫函數豐富,語言基本特性的簡單真沒感覺出來。

我們再來看一個實例

本人一直用foobar2000作為音樂播放器,聽歌時候把自己喜歡的歌都會特別添加到一個播放列表。

自己用iphone,同步歌曲的時候需要用到itunes,而itunes卻沒有我用foobar2000的精選播放列表呢~

本人只好定期把播放列表的mp3文件拷貝到一個目錄,我用itunes只需同步這個目錄即可
(順便吐槽下itunes不好使,在后期我都直接用其他同步工具代替之)

播放列表是*.m3u格式的文本,用記事本打開可以看到mp3的絕對路徑。

直接貼代碼吧,寫得比較倉促,各位將就參考下即可:

#coding=gbk  import sys, shutil, os, string mp3List = "F://My Documents//mp3list//默認精選.m3u" destDir = "G://POP//默認精選"  def cpFile(srcPath):   fileName = os.path.basename(srcPath)   destPath = destDir + os.path.sep + fileName   if os.path.exists(srcPath) and not os.path.exists(destPath):     print 'cp %s %s' % (srcPath,destPath)     shutil.copy(srcPath,destPath)  if __name__ == '__main__':   f = file(mp3List, 'r')   lists = f.readlines()   for i in lists:     cpFile(string.strip(i))        f.close() 

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 泰顺县| 双牌县| 盘山县| 开原市| 泸水县| 景洪市| 柞水县| 晴隆县| 德化县| 桓仁| 广东省| 买车| 宝兴县| 阿图什市| 华宁县| 日喀则市| 青浦区| 门源| 三门峡市| 宜昌市| 石景山区| 旺苍县| 来凤县| 迭部县| 竹溪县| 石门县| 从江县| 揭阳市| 长葛市| 荣昌县| 嘉峪关市| 合山市| 许昌县| 阿坝| 永春县| 乐东| 长阳| 吉木乃县| 铜山县| 沁阳市| 石狮市|