“Tylko katalogi listy Python” Kod odpowiedzi

Uzyskaj listę folderów w Pythonie z katalogu

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

Katalog listy w Python

from os import listdir

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

Tylko katalogi listy Python

>>> [ 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

Znajdź tylko katalogi listy

find . -maxdepth 1 -type d -iname "<regex>" -printf '%f\n'
Cloudy Civet

Python3 List Directories

import os

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

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

Odpowiedzi podobne do “Tylko katalogi listy Python”

Pytania podobne do “Tylko katalogi listy Python”

Więcej pokrewnych odpowiedzi na “Tylko katalogi listy Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu