“Python LS -Verzeichnis” Code-Antworten

Python -Listendateien im aktuellen Verzeichnis

import os

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

Python Holen Sie sich alle Dateinamen in einem Dir

from os import listdir
from os.path import isfile, join
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
Troubled Teira

Speichern Sie alle Dateiennamen in einem Ordner Python

import os
#this command will store all .txt files in same directories
ALL_FILES_IN_DIR = [ELEM for ELEM in os.listdir() if "txt" in ELEM]

#ALL DIRETORIES 
ALL_DIR = [ELEM for ELEM in os.listdir() if "." not in ELEM]
Powerful Pony

Holen Sie sich Dateinamen in Ordner Python

from os import listdir
from os.path import isfile, join
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
pi junky

Python LS -Verzeichnis

import os
os.listdir()
Vivacious Vole

Ähnliche Antworten wie “Python LS -Verzeichnis”

Fragen ähnlich wie “Python LS -Verzeichnis”

Weitere verwandte Antworten zu “Python LS -Verzeichnis” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen