“Holen Sie sich eine Datei -Python -Verzeichnis” Code-Antworten

Holen Sie sich eine Datei -Python -Verzeichnis

import os 
dir_path = os.path.dirname(os.path.realpath(__file__))
Agreeable Ape

Holen Sie sich Dateien im Verzeichnis Python

import os
files_and_directories = os.listdir("path/to/directory")
Ill Impala

Python bekommt Dir

import os 
#full path
dir_path = os.path.dirname(os.path.realpath(__file__))

#current dir
cwd = os.getcwd()
mrjakobdk

Python erhalten Dateien im Verzeichnis

from pathlib import Path
for txt_path in Path("/path/folder/directory").glob("*.txt"):
  print(txt_path)
Supermavster

Python erhalten Dateien im Verzeichnis

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

from os import path
dir_path = path.dirname(__file__)
68Duck

Ähnliche Antworten wie “Holen Sie sich eine Datei -Python -Verzeichnis”

Fragen ähnlich wie “Holen Sie sich eine Datei -Python -Verzeichnis”

Weitere verwandte Antworten zu “Holen Sie sich eine Datei -Python -Verzeichnis” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen