Python os.path和shutil模块实现文件复制、删除

简介:

     主要运用os.path和shutil模块来在实现文件复制、删除,可以根据自己的需求修改相关代码即可。

 
  1. #!/usr/bin/env python 
  2. # -*- coding: utf-8 -*- 
  3.  
  4. import os 
  5. import os.path 
  6. import shutil 
  7. import time,datetime 
  8.  
  9. def copyFiles(sourceDir,  targetDir): #把某一目录下的所有文件复制到指定目录中 
  10.      if sourceDir.find(".svn") > 0
  11.          return 
  12.      for file in os.listdir(sourceDir): 
  13.          sourceFile = os.path.join(sourceDir,  file) 
  14.          targetFile = os.path.join(targetDir,  file) 
  15.          if os.path.isfile(sourceFile): 
  16.              if not os.path.exists(targetDir): 
  17.                  os.makedirs(targetDir) 
  18.              if not os.path.exists(targetFile) or(os.path.exists(targetFile) and (os.path.getsize(targetFile) != os.path.getsize(sourceFile))): 
  19.                      open(targetFile, "wb").write(open(sourceFile, "rb").read()) 
  20.          if os.path.isdir(sourceFile): 
  21.              First_Directory = False 
  22.              copyFiles(sourceFile, targetFile) 
  23.  
  24. def removeFileInFirstDir(targetDir):#删除一级目录下的所有文件 
  25.     for file in os.listdir(targetDir): 
  26.         targetFile = os.path.join(targetDir,  file) 
  27.         if os.path.isfile(targetFile): 
  28.             os.remove(targetFile) 
  29.  
  30. def coverFiles(sourceDir,  targetDir):#复制一级目录下的所有文件到指定目录 
  31.          for file in os.listdir(sourceDir): 
  32.              sourceFile = os.path.join(sourceDir,  file) 
  33.              targetFile = os.path.join(targetDir,  file) 
  34.              #cover the files 
  35.              if os.path.isfile(sourceFile): 
  36.                  open(targetFile,"wb").write(open(sourceFile,"rb").read()) 
  37.  
  38. def moveFileto(sourceDir,  targetDir):#复制指定文件到目录 
  39.     shutil.copy(sourceDir,  targetDir) 
  40.  
  41. def writeVersionInfo(targetDir):#往指定目录写文本文件 
  42.     open(targetDir, "wb").write("Revison:"
  43.  
  44. def getCurTime():#返回当前的日期,以便在创建指定目录的时候用 
  45.      nowTime = time.localtime() 
  46.      year = str(nowTime.tm_year) 
  47.      month = str(nowTime.tm_mon) 
  48.      if len(month) < 2
  49.          month = '0' + month 
  50.      day =  str(nowTime.tm_yday) 
  51.      if len(day) < 2
  52.          day = '0' + day 
  53.      return (year + '-' + month + '-' + day) 
  54.  
  55. if  __name__ =="__main__":#主函数 
  56.      print "Start(S) or Quilt(Q) \n" 
  57.      flag = True 
  58.      while (flag): 
  59.          answer = raw_input() 
  60.          if  answer == 'Q'
  61.              flag = False 
  62.          elif answer == 'S'
  63.              formatTime = getCurTime() 
  64.              targetFoldername = "Build " + formatTime + "-01" 
  65.              Target_File_Path += targetFoldername 
  66.              copyFiles(Debug_File_Path,   Target_File_Path) 
  67.              removeFileInFirstDir(Target_File_Path) 
  68.              coverFiles(Release_File_Path,  Target_File_Path) 
  69.              moveFileto(Firebird_File_Path,  Target_File_Path) 
  70.              moveFileto(AssistantGui_File_Path,  Target_File_Path) 
  71.              writeVersionInfo(Target_File_Path+"\test.txt"
  72.              print "all sucess" 
  73.          else
  74.              print "not the correct command" 

 


本文转自 lover00751CTO博客,原文链接:http://blog.51cto.com/wangwei007/1106818,如需转载请自行联系原作者


相关文章
|
4天前
|
缓存 安全 Linux
Linux系统查看操作系统版本信息、CPU信息、模块信息
在Linux系统中,常用命令可帮助用户查看操作系统版本、CPU信息和模块信息
48 23
|
2月前
|
Python
文件元数据获取方法对比:`os.path` 与 `os.stat`
本文对比了Python中两种获取文件元数据的方法:`os.path`和`os.stat`。通过示例代码展示了如何获取文件大小和修改时间,并从性能、功能性和代码可读性三方面进行了详细对比。最终给出了根据具体需求选择合适方法的最佳实践建议。
37 2
|
2月前
|
JavaScript 前端开发 Python
python中的OS模块的基本使用
欢迎来到瑞雨溪的博客,一名热爱JavaScript与Vue的大一学生。博客分享前端技术及全栈开发经验,持续更新中,期待您的关注和支持!🎉🎉🎉
46 0
|
3月前
|
Python
Python实用记录(四):os模块-去后缀或者改后缀/指定目录下图片或者子目录图片写入txt/csv
本文介绍了如何使用Python的os模块来操作文件,包括更改文件后缀、分割文件路径和后缀、将指定目录下的所有图片写入txt文档,以及将指定目录下所有子目录中的图片写入csv文档,并为每个子目录分配一个标签。
40 1
|
3月前
|
Shell Python
Python中os模块的常用方法和示例
在Python中,`os`模块提供了与操作系统交互的函数,用于文件和目录管理、路径操作、环境变量等。常用方法包括路径操作(如`os.path.join()`、`os.path.abspath()`)、文件和目录管理(如`os.mkdir()`、`os.remove()`)、环境变量和进程管理(如`os.getenv()`、`os.system()`)以及其他常用功能(如`os.getcwd()`、`os.urandom()`)。
46 0
|
3月前
|
存储 JSON 数据格式
Python 输入输出与文件处理: io、pickle、json、csv、os.path 模块详解
Python 输入输出与文件处理: io、pickle、json、csv、os.path 模块详解
51 0
|
Windows Python
|
Python Shell
python3中,os.path模块下常用的用法总结
abspath basename dirname exists getatime getctime getmtime getsize isabs isdir isfile islink ismount join realpath samefile sameopenfile split splitext abspath 返回一个目录的绝对路径 Return an absolute path.
991 0