“Python Iterate Directory” Code-Antworten

durch alle Dateien im Verzeichnis Python durchführen

import os
directory = 'the/directory/you/want/to/use'

for filename in os.listdir(directory):
    if filename.endswith(".txt"):
      #do smth
      continue
    else:
    continue
Bored Coder

Python Iterate Directory

import os

directory = r'C:\Users\admin'
for filename in os.listdir(directory):
    if filename.endswith(".jpg") or filename.endswith(".png"):
        print(os.path.join(directory, filename))
    else:
        continue
Fair Finch

Python -Schleife durch Verzeichnis

import os

for filename in os.listdir(directory):
	print(filename)
Lypsoty112

durch Verzeichnisse in Python wiederholen

import os

dir = os.fsencode(filename='img') # here 'img' should be replaced with
									# desired directory

lst = []

for items in os.listdir(dir):
    lst.append(items)
print(lst)
vip_codes

Ähnliche Antworten wie “Python Iterate Directory”

Fragen ähnlich wie “Python Iterate Directory”

Weitere verwandte Antworten zu “Python Iterate Directory” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen