“Listen Sie das Verzeichnis in Python auf” Code-Antworten

Holen Sie sich eine Liste der Ordner im Verzeichnis Python

import os 
my_list = os.listdir('My_directory')
Adventurous Armadillo

Listen Sie das Verzeichnis in Python auf

from os import listdir

## Prints the current directory as a list (including file types)
print(os.listdir())
Jittery Jackal

Listen Sie Dateien Python auf

import glob
files=glob.glob(given_path)
Tremendous Enceladus

Python listet nur Verzeichnisse auf

>>> [ name for name in os.listdir(thedir) if os.path.isdir(os.path.join(thedir, name)) ]
['ctypes', 'distutils', 'encodings', 'lib-tk', 'config', 'idlelib', 'xml', 'bsddb', 'hotshot', 'logging', 'doc', 'test', 'compiler', 'curses', 'site-packages', 'email', 'sqlite3', 'lib-dynload', 'wsgiref', 'plat-linux2', 'plat-mac']
FanieltheFan

Python3 List -Verzeichnisse

import os

arr = os.listdir("c:/temp/")

print("\n".join(arr))
Clean Cow

Ähnliche Antworten wie “Listen Sie das Verzeichnis in Python auf”

Fragen ähnlich wie “Listen Sie das Verzeichnis in Python auf”

Weitere verwandte Antworten zu “Listen Sie das Verzeichnis in Python auf” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen