99999久久久久久亚洲,欧美人与禽猛交狂配,高清日韩av在线影院,一个人在线高清免费观看,啦啦啦在线视频免费观看www

熱線電話:13121318867

登錄
首頁精彩閱讀Python中shutil模塊的學(xué)習(xí)筆記教程
Python中shutil模塊的學(xué)習(xí)筆記教程
2018-04-28
收藏

Python中shutil模塊的學(xué)習(xí)筆記教程

shutil 名字來源于 shell utilities,有學(xué)習(xí)或了解過Linux的人應(yīng)該都對(duì) shell 不陌生,可以借此來記憶模塊的名稱。該模塊擁有許多文件(夾)操作的功能,包括復(fù)制、移動(dòng)、重命名、刪除等等
一、chutil.copy(source, destination)
shutil.copy() 函數(shù)實(shí)現(xiàn)文件復(fù)制功能,將 source 文件復(fù)制到 destination 文件夾中,兩個(gè)參數(shù)都是字符串格式。如果 destination 是一個(gè)文件名稱,那么它會(huì)被用來當(dāng)作復(fù)制后的文件名稱,即等于 復(fù)制 + 重命名。
舉例如下:    
>> import shutil
 >> import os
 >> os.chdir('C:\')
 >> shutil.copy('C:\spam.txt', 'C:\delicious')
 'C:\delicious\spam.txt'
 >> shutil.copy('eggs.txt', 'C:\delicious\eggs2.txt')
 'C:\delicious\eggs2.txt'

如代碼所示,該函數(shù)的返回值是復(fù)制成功后的字符串格式的文件路徑
二、shutil.copytree(source, destination)
shutil.copytree()函數(shù)復(fù)制整個(gè)文件夾,將 source 文件夾中的所有內(nèi)容復(fù)制到 destination 中,包括 source 里面的文件、子文件夾都會(huì)被復(fù)制過去。兩個(gè)參數(shù)都是字符串格式。
注意:如果 destination 文件夾已經(jīng)存在,該操作并返回一個(gè) FileExistsError 錯(cuò)誤,提示文件已存在。即表示,如果執(zhí)行了該函數(shù),程序會(huì)自動(dòng)創(chuàng)建一個(gè)新文件夾(destination參數(shù))并將 source 文件夾中的內(nèi)容復(fù)制過去
舉例如下:    
>> import shutil
 >> import os
 >> os.chdir('C:\')
 >> shutil.copytree('C:\bacon', 'C:\bacon_backup')
 \'C:\bacon_backup'

如以上代碼所示,該函數(shù)的返回值是復(fù)制成功后的文件夾的絕對(duì)路徑字符串

所以該函數(shù)可以當(dāng)成是一個(gè)備份功能

三、shutil.move(source, destination)

shutil.move() 函數(shù)會(huì)將 source 文件或文件夾移動(dòng)到 destination 中。返回值是移動(dòng)后文件的絕對(duì)路徑字符串。

如果 destination 指向一個(gè)文件夾,那么 source 文件將被移動(dòng)到 destination 中,并且保持其原有名字。例如:    
>> import shutil
 >> shutil.move('C:\bacon.txt', 'C:\eggs')
 'C:\eggs\bacon.txt'

上例中,如果 C:\eggs 文件夾中已經(jīng)存在了同名文件 bacon.txt,那么該文件將被來自于 source 中的同名文件所重寫。

如果 destination 指向一個(gè)文件,那么 source 文件將被移動(dòng)并重命名,如下:    
>> shutil.move('C:\bacon.txt', 'C:\eggs\new_bacon.txt')
 'C:\eggs\new_bacon.txt'

等于是移動(dòng)+重命名

<b>注意,如果 destination 是一個(gè)文件夾,即沒有帶后綴的路徑名,那么 source 將被移動(dòng)并重命名為 destination</b>,如下:    
>> shutil.move('C:\bacon.txt', 'C:\eggs')
 'C:\eggs'

即 bacon.txt 文件已經(jīng)被重命名為 eggs,是一個(gè)沒有文件后綴的文件

最后,destination 文件夾必須是已經(jīng)存在的,否則會(huì)引發(fā)異常:    
>> shutil.move('spam.txt', 'C:\does_not_exist\eggs\ham')
 Traceback (most recent call last):
 File "D:\Python36\lib\shutil.py", line 538, in move
 os.rename(src, real_dst)
 FileNotFoundError: [WinError 3] 系統(tǒng)找不到指定的路徑。: 'test.txt' -> 'C:\does_not_exist\eggs\ham'
 During handling of the above exception, another exception occurred:
 Traceback (most recent call last):
 File "
四、永久性刪除文件和文件夾
這里有涉及到 os 模塊中的相關(guān)函數(shù)
os.unlink(path) 會(huì)刪除 path 路徑文件
os.rmdir(path) 會(huì)刪除 path 路徑文件夾,但是這個(gè)文件夾必須是空的,不包含任何文件或子文件夾
shutil.rmtree(path) 會(huì)刪除 path 路徑文件夾,并且在這個(gè)文件夾里面的所有文件和子文件夾都會(huì)被刪除
利用函數(shù)執(zhí)行刪除操作時(shí),應(yīng)該倍加謹(jǐn)慎,因?yàn)槿绻胍獎(jiǎng)h除 txt 文件,而不小心寫到了 rxt ,那么將會(huì)給自己帶來麻煩
此時(shí),我們可以利用字符串的 endswith 屬性對(duì)文件格式進(jìn)行檢查與篩選
總結(jié)
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來一定的幫助.

數(shù)據(jù)分析咨詢請(qǐng)掃描二維碼

若不方便掃碼,搜微信號(hào):CDAshujufenxi

數(shù)據(jù)分析師資訊
更多

OK
客服在線
立即咨詢
客服在線
立即咨詢
') } function initGt() { var handler = function (captchaObj) { captchaObj.appendTo('#captcha'); captchaObj.onReady(function () { $("#wait").hide(); }).onSuccess(function(){ $('.getcheckcode').removeClass('dis'); $('.getcheckcode').trigger('click'); }); window.captchaObj = captchaObj; }; $('#captcha').show(); $.ajax({ url: "/login/gtstart?t=" + (new Date()).getTime(), // 加隨機(jī)數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調(diào)用 initGeetest 進(jìn)行初始化 // 參數(shù)1:配置參數(shù) // 參數(shù)2:回調(diào),回調(diào)的第一個(gè)參數(shù)驗(yàn)證碼對(duì)象,之后可以使用它調(diào)用相應(yīng)的接口 initGeetest({ // 以下 4 個(gè)配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺(tái)檢測(cè)極驗(yàn)服務(wù)器是否宕機(jī) new_captcha: data.new_captcha, // 用于宕機(jī)時(shí)表示是新驗(yàn)證碼的宕機(jī) product: "float", // 產(chǎn)品形式,包括:float,popup width: "280px", https: true // 更多配置參數(shù)說明請(qǐng)參見:http://docs.geetest.com/install/client/web-front/ }, handler); } }); } function codeCutdown() { if(_wait == 0){ //倒計(jì)時(shí)完成 $(".getcheckcode").removeClass('dis').html("重新獲取"); }else{ $(".getcheckcode").addClass('dis').html("重新獲取("+_wait+"s)"); _wait--; setTimeout(function () { codeCutdown(); },1000); } } function inputValidate(ele,telInput) { var oInput = ele; var inputVal = oInput.val(); var oType = ele.attr('data-type'); var oEtag = $('#etag').val(); var oErr = oInput.closest('.form_box').next('.err_txt'); var empTxt = '請(qǐng)輸入'+oInput.attr('placeholder')+'!'; var errTxt = '請(qǐng)輸入正確的'+oInput.attr('placeholder')+'!'; var pattern; if(inputVal==""){ if(!telInput){ errFun(oErr,empTxt); } return false; }else { switch (oType){ case 'login_mobile': pattern = /^1[3456789]\d{9}$/; if(inputVal.length==11) { $.ajax({ url: '/login/checkmobile', type: "post", dataType: "json", data: { mobile: inputVal, etag: oEtag, page_ur: window.location.href, page_referer: document.referrer }, success: function (data) { } }); } break; case 'login_yzm': pattern = /^\d{6}$/; break; } if(oType=='login_mobile'){ } if(!!validateFun(pattern,inputVal)){ errFun(oErr,'') if(telInput){ $('.getcheckcode').removeClass('dis'); } }else { if(!telInput) { errFun(oErr, errTxt); }else { $('.getcheckcode').addClass('dis'); } return false; } } return true; } function errFun(obj,msg) { obj.html(msg); if(msg==''){ $('.login_submit').removeClass('dis'); }else { $('.login_submit').addClass('dis'); } } function validateFun(pat,val) { return pat.test(val); }