0
count = 0
path = input("Please enter the directory you want to get the files from. -> ")
for filename in glob.glob(os.path.join(path, '*.ppm')):
file_obj = open(filename, "r", encoding="utf-8")
list_of_files.append(file_obj)
count += 1
這個代碼幾乎掃描給定目錄的用戶,並打開該目錄中的所有.ppm文件。當它逐個打開它時,它將(類 - '_io.TextIOWrapper')附加到列表中。Python - 如何通過名稱打開輸入文件
一個人如何按照名稱打開文件?
Ex。 image1.ppm,image2.ppm,image3.ppm,image4.ppm在我的目錄中。
的代碼讀取和順序打開文件:
image2.ppm
image4.ppm
image1.ppm
image3.ppm