題目:判斷當前目錄下某個檔案是否存在,如果存在則讀取檔案內容,如果不存在則建立檔案並寫入內容之後讀取寫入的內容
import os
# 判斷某乙個檔案是否存在,存在則讀取其中的內容,不存在則寫入內容並讀取
filenmae =
input
("輸入檔案的名稱"
)if os.path.exists(filenmae)
:with
open
(filenmae,
'r')
as fp:
lis = fp.readlines(
)print(''
.join(lis)
)else
:with
open
(filenmae,
'w')
as fp:
date =
input
("輸入寫入的內容"
) fp.writelines(date)
with
open
(filenmae,
'r')
as d:
a = d.readlines(
)print(''
.join(a)
)
php判斷是否是檔案 php 判斷檔案是否存在
sha1 file 計算文字檔案sha 1雜湊 sha1 file file 語法 sha1 file file,raw 引數 file 必需。規定要計算的檔案。raw 可選。布林值,規定十六進製制或二進位制輸出格式 true 原始 16 字元二進位制格式 false 預設。32 字元十六進製制數 ...
Linux shell判斷檔案或目錄是否存在
這裡的 x 引數判斷 mypath是否存在並且是否具有可執行許可權 if x mypath then mkdir mypath fi 這裡的 d 引數判斷 mypath是否存在 if d mypath then mkdir mypath fi 這裡的 f引數判斷 myfile是否存在 if f my...
shell bash判斷檔案或資料夾是否存在
shell判斷資料夾是否存在 如果資料夾不存在,建立資料夾 if d myfolder then mkdir myfolder fi shell判斷檔案,目錄是否存在或者具有許可權 folder var www file var www log x 引數判斷 folder 是否存在並且是否具有可執行...