“Obtenez le chemin du répertoire actuel Python” Réponses codées

Obtenez le chemin du répertoire actuel Python

import os
os.path.abspath(os.getcwd())
A

Path du fichier répertoire actuel Python

#Python 3

#For the directory of the script being run:

import pathlib
pathlib.Path(__file__).parent.resolve()

#For the current working directory:

import pathlib
pathlib.Path().resolve()

#Python 2 and 3

#For the directory of the script being run:

import os
os.path.dirname(os.path.abspath(__file__))

#If you mean the current working directory:

import os
os.path.abspath(os.getcwd())
Sore Stork

Python OS obtient un chemin DIR

from os import getcwd # only import "getcwd" from os

getcwd() # Get the current working directory
Panicky Pig

Réponses similaires à “Obtenez le chemin du répertoire actuel Python”

Questions similaires à “Obtenez le chemin du répertoire actuel Python”

Plus de réponses similaires à “Obtenez le chemin du répertoire actuel Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code