我正在製作一個文件類型來存儲來自我的程序的信息。文件類型可以包括以#開頭的行,如: # This is a comment.
如圖所示,行前的#表示註釋。 我已經用Python寫的一個程序,可以閱讀這些文件: fileData = []
file = open("Tutorial.rdsf", "r")
line = file.readline()
while line != ""
我已經通過在當前目錄中的所有文件下列Windows的批處理腳本循環: FOR %%F in (%CD%\*.*) DO (
:: I am doing my process here
)
我知道我可以遍歷一個特定的文件類型使用*.ext,但我需要遍歷所有下面的文件類型給出,而忽略其他所有類型,這也是唯一的單FOR循環: php
phtml
css
js
sql
xml
我想與用戶輸入的下列特定文件類型打開一個目錄中的文件: if type is not None:
for file in glob.glob(dir + "/" + type):
if os.path.isfile(file):
open_file(file)
if os.path.isdir(file):
open_folder(fi