“Python lista ścieżek” Kod odpowiedzi

Pliki listy Python w bieżącym katalogu

import os

files = os.listdir('.')
print(files)
for file in files:
  # do something
  
Soggy Boi

Python lista ścieżek

#see a list of all available paths
import os
os.listdir(path='.') #Where '.' denotes the same location. For subfolders:
os.listdir(path='./subfoldername' # you can go deeper and deeper using the same method
Bewildered Boar

Odpowiedzi podobne do “Python lista ścieżek”

Pytania podobne do “Python lista ścieżek”

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

Przeglądaj inne języki kodu