with open('e:/資訊.docx','rb') as f:
read_data = f.read()
f.closed
with open('e:/資訊(2).docx','wb') as f :
f.write(read_data)
python對檔案的操作還算是方便的,只需要包含os模組進來,使用相關函式即可實現目錄的建立。
os.path.exists(path) 判斷乙個目錄是否存在
os.makedirs(path) 多層建立目錄
os.mkdir(path) 建立目錄
def mkdir(path):
# 引入模組
import os
# 去除首位空格
path=path.strip()
# 去除尾部 \ 符號
path=path.rstrip("\\")
# 判斷路徑是否存在
# 存在 true
# 不存在 false
i***ists=os.path.exists(path)
# 判斷結果
if not i***ists:
# 如果不存在則建立目錄
# 建立目錄操作函式
os.makedirs(path)
print path+' 建立成功'
return true
else:
# 如果目錄存在則不建立,並提示目錄已存在
print path+' 目錄已存在'
return false
# 定義要建立的目錄
mkpath="d:\\qttc\\web\\"
# 呼叫函式
mkdir(mkpath)
在以上demo的函式裡,我並沒有使用os.mkdir(path)函式,而是使用了多層建立目錄函式os.makedirs(path)。這兩個函式之間最大的區別是當父目錄不存在的時候os.mkdir(path)不會建立,os.makedirs(path)則會建立父目錄。
比如:例子中我要建立的目錄web位於d盤的qttc目錄下,然而我d盤下沒有qttc父目錄,如果使用os.mkdir(path)函式就會提示我目標路徑不存在,但使用os.makedirs(path)會自動幫我建立父目錄qttc,請在qttc目錄下建立子目錄web。
python 檔案操作
簡明 python 教程 中的例子,python 執行出錯,用open代替file 可以執行。poem programming is fun when the work is done if you wanna make your work also fun use python f open e ...
python檔案操作
1,將乙個路徑名分解為目錄名和檔名兩部分 a,b os.path.split c 123 456 test.txt print a print b 顯示 c 123 456 test.txt 2,分解檔名的副檔名 a,b os.path.splitext c 123 456 test.txt pri...
Python 檔案操作
1.開啟檔案 如下 f open d test.txt w 說明 第乙個引數是檔名稱,包括路徑 第二個引數是開啟的模式mode r 唯讀 預設。如果檔案不存在,則丟擲錯誤 w 只寫 如果檔案 不存在,則自動建立檔案 a 附加到檔案末尾 r 讀寫 如果需要以二進位制方式開啟檔案,需要在mode後面加上...