python對文件夾的一些操作
python文件夾的一些操作 復制文件夾 刪除文件夾
def CopyFolderOs(sFolder,tFolder): sourcePath = sFolder destPath = tFolder for root, dirs, files in os.walk(sourcePath):#figure out where we're going dest = destPath + root.replace(sourcePath, '') #if we're in a directory that doesn't exist in the destination folder #then create a new folder if not os.path.isdir(dest): os.mkdir(dest) print 'Directory created at: ' + dest #loop through all files in the directory for f in files: #compute current (old) & new file locations oldLoc = root + '\\' + f newLoc = dest + '\\' + f if not os.path.isfile(newLoc): try: shutil.copy2(oldLoc, newLoc) print 'File ' + f + ' copied.' except IOError: print 'file "' + f + '" already exists'</pre><pre class="brush:python; toolbar: true; auto-links: false;">def RemoveFolderOs(sourceDir,localAppDataPath): for root, dirs, files in os.walk(sourceDir): for f in files: os.unlink(os.path.join(root, f)) for d in dirs: shutil.rmtree(os.path.join(root, d))</pre><br />
本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!