“Получите все файлы на ПК Python” Ответ

Найдите все файлы в каталоге с расширением Python

import glob, os
os.chdir("/mydir")
for file in glob.glob("*.txt"):
    print(file)
Enchanting Echidna

Получить все файл в папку Python

path = "C:\code\"

import glob

txtfiles = []
for file in glob.glob(path + "\\*.m4a"):
    txtfiles.append(file)

for item in txtfiles:
    print(item)
Spotless Swan

Получите все файлы на ПК Python

import os
 
 
counter = 0
print("If you want all the excel file, for example write .xlsx")
inp = input("What are you looking for?:> ")
thisdir = os.getcwd()
for r, d, f in os.walk("C:\\"): # change the hard drive, if you want
    for file in f:
        filepath = os.path.join(r, file)
        if inp in file:
        	counter += 1
        	print(os.path.join(r, file))
print(f"trovati {counter} files.")
Dead Donkey

Ответы похожие на “Получите все файлы на ПК Python”

Вопросы похожие на “Получите все файлы на ПК Python”

Больше похожих ответов на “Получите все файлы на ПК Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования