“Holen Sie sich alle Dateien in PC Python” Code-Antworten

Suchen Sie alle Dateien in einem Verzeichnis mit Erweiterung Python

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

Holen Sie sich alle Dateien in Ordner 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

Holen Sie sich alle Dateien in PC 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

Ähnliche Antworten wie “Holen Sie sich alle Dateien in PC Python”

Fragen ähnlich wie “Holen Sie sich alle Dateien in PC Python”

Weitere verwandte Antworten zu “Holen Sie sich alle Dateien in PC Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen