導航:首頁 > 編程語言 > python備份文件夾

python備份文件夾

發布時間:2023-08-22 00:16:06

python 菜鳥求助,在線等

備份一個文件,使用shutil庫的函數可以達到這個目的:

⑵ python 保存csv到新的文件夾

你可以這樣做:
import os
#獲取當前文件夾,也就是當前py文件所處的文件夾
current_path = os.getcwd()

#結合文件夾
path = current_path+"\\data\\file1\\file2\\"
csvfile = file(path+"twse_com_tw.zho_CHN.UTF8.csv", 'wb')

⑶ python中怎樣將文件拷貝到指定的目錄下

代碼:

import os
import shutil
from shutil import Error
from shutil import stat
from shutil import 2
src = "" #需要復制的文件目錄
dst = "" #目標目錄
def jiecptree(src, dst, symlinks=False, ignore=None): #聲明函數 ree( 要復制的目錄,目標目錄,復制符號連接內容到新目錄,沒有要忽略文件)
names = os.listdir(src) #獲得要復制目錄的文件名列表,賦給變數 names
if ignore is not None: #如果 ignore 不是None值
ignored_names = ignore(src, names) # src目錄中要忽略文件的名字賦給 ignored_names
else: # 否則
ignored_names = set() #ignore_name 被 不重復空元素集 賦值
if os.path.isdir(dst):
pass
else:
os.makedirs(dst)
# print"dstfirst:"+dst
errors = [] #聲明 errors列
for name in names: #將names里的元素循環復制給name
if name in ignored_names: #如果name在要求被忽略的列里出現
continue #繼續for循環(跳回for,從新循環下個元素)
srcname = os.path.join(src, name) #將路徑名(src)添加到文名(name)之前然後賦值給 srcname
dstname = os.path.join(dst, name) #將路徑名(dst)添加到文名(name)之前然後賦值給 dstcname
from shutil import Error
# print "name:"+name
# print "src:"+src
# print "dst:"+dst
try: #嘗試
if os.path.islink(srcname):
continue
elif os.path.isdir(srcname): #如果srcname路徑是存在
jiecptree(srcname, dstname, symlinks, ignore)
elif os.path.isdir(dstname):
os.remove(dstname)
2(srcname, dstname)
else: # 否則
2(srcname, dstname) # 復制srcname到dstname
# print "srcname:"+srcname
# print "dstname:"+dstname
# XXX What about devices, sockets etc.? #怎樣裝置
except (IOError, os.error), why: #除(IOError[與文件有關的異常],操作系統異常)外,返回原因
errors.append((srcname, dstname, str(why))) # 向errors列里添加,(要復制的目錄,目標目錄,錯誤原因)
# catch the Error from the recursive jiecptree so that we can 從遞歸復制中捕捉這個錯誤,以便於我們能繼續復制其他文件
# continue with other files
except Error, err: #除錯誤外,返回錯誤:
errors.extend(err.args[0]) #擴展 errors 列,添加(err.args[0] 元素)
try: #嘗試
stat(src, dst) # 從src復制許可權位,上次訪問時間,最後修改時間 到 dst,
except WindowsError: # 除 Windows錯誤 外:
# can't file access times on Windows 在Windows上無法復制文件訪問時間
pass # 通過(不作任何處理)
except OSError, why: # 除 操作系統錯誤 外,返回原因:
errors.extend((src, dst, str(why))) #擴展 errors 列,添加(要復制的目錄,目標目錄,錯誤原因)
if errors: # 如果錯誤
raise Error(errors) # 提示錯誤

更多相關內容可參考資料http://www.viiboo.cn

閱讀全文

與python備份文件夾相關的資料

熱點內容
舊版本安卓怎麼安裝 瀏覽:835
怎麼樣演算法定退休年齡 瀏覽:623
app花錢怎麼退款 瀏覽:820
51單片機atmel 瀏覽:213
面板單重門檻命令 瀏覽:968
程序員性生活厲害嗎 瀏覽:608
如何改伺服器子網掩碼 瀏覽:560
python寫滿磁碟 瀏覽:608
外省違章怎麼交罰款app 瀏覽:771
如何提取wml源碼 瀏覽:677
程序員陸漓出國了嗎 瀏覽:991
python爬二級鏈接 瀏覽:627
程序員被老總罵 瀏覽:582
如何在win7下連接網路連接到伺服器 瀏覽:129
伺服器如何進入光碟啟動不了 瀏覽:754
什麼學生雲伺服器最便宜 瀏覽:341
蘋果手機怎麼設置app消息提示音 瀏覽:525
把四個文件夾釋放到安裝目錄 瀏覽:217
一女程序員喜歡男程序員 瀏覽:867
壓縮加密怎麼做 瀏覽:743