Obtention du chemin complet du répertoire du fichier actuel
Pour récupérer le chemin complet du répertoire contenant le script Python actuel, il existe plusieurs approches utilisant des modules Python tels que pathlib et os.path.
Python 3
Pour l'annuaire des Running Script :
import pathlib
pathlib.Path(__file__).parent.resolve()
Copier après la connexion
Pour le répertoire de travail actuel :
import pathlib
pathlib.Path().resolve()
Copier après la connexion
Python 2 et 3
Pour le répertoire du script en cours d'exécution :
import os
os.path.dirname(os.path.abspath(__file__))
Copier après la connexion
Pour le travail actuel Annuaire :
import os
os.path.abspath(os.getcwd())
Copier après la connexion
Références :
- [Documentation Python sur pathlib](https://docs.python.org/3/library/pathlib .html)
- [documentation os.path (Python 2.7)](https://docs.python.org/2/library/os.path.html)
- [documentation os.path (Python 3)](https://docs.python.org /3/library/os.path.html)
- [documentation os.getcwd (Python 2.7)](https://docs.python.org/2/library/os.path.html#os.getcwd)
- [documentation os.getcwd (Python 3)](https://docs .python.org/3/library/os.path.html#os.getcwd)
- [Signification du fichier variable en Python](https://stackoverflow.com/questions/3430370/what-does-the-file-variable-mean-do)
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!