Obtenez le répertoire de Fichier Python
import os
dir_path = os.path.dirname(os.path.realpath(__file__))
Agreeable Ape
import os
dir_path = os.path.dirname(os.path.realpath(__file__))
import os
files_and_directories = os.listdir("path/to/directory")
import os
#full path
dir_path = os.path.dirname(os.path.realpath(__file__))
#current dir
cwd = os.getcwd()
from pathlib import Path
for txt_path in Path("/path/folder/directory").glob("*.txt"):
print(txt_path)
from os import listdir
from os.path import isfile, join
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
from os import path
dir_path = path.dirname(__file__)