import os
message =
'the directory already exists.'
testdir =
'testdir'
try:
#在linux系統下 可以用~表示/home/你的名字/
# home = os.path.expanduser("~")#把path中包含的"~"和"~user"轉換成使用者目錄
# print(home)
home = os.path.dirname(os.path.abspath(
'.')
)#os.path.dirname()獲得檔案當前目錄
#os.path.abspath()獲得檔案的父目錄
print
(home)
ifnot os.path.exists(os.path.join(home, testdir)):
#把目錄和檔名合成乙個路徑
os.makedirs(os.path.join(home,testdir)
)#os.makedirs()用於遞迴建立目錄
#如果子目錄建立失敗或者已經存在,會丟擲乙個oserror的異常
print
("successfully create"
)else
:print
(message)
except exception as e:
print
(e)
Python 如何檢查檔案是否存在
在python中,我們可以使用os.path.isfile 或pathlib.path.is file python 3.4 來檢查檔案是否存在。python 3.4的新功能 from pathlib import path fname path c test abc.txt print fname...
檢查文件是否存在
如果只想檢查乙個文件是否存在 根本不想關心內容 那麼用 head方法來代替get方法。head請求沒有返回體,只返回乙個 http 請求報頭 i 如果文件存在,elasticsearch 將返回乙個200 ok的狀態碼 1.1 200ok content type text plain charse...
ajax檢查user email是否存在
1.首先建立乙個xmlhttpreq物件,非ie瀏覽器使用new xmlhttprequest 11.這是表單驗證觸發函式 12.function check 23.返回響應資訊,並顯示在乙個div中 24.function showresult 30.31.32.頁面 33.35.36.37.38...