Maison >développement back-end >Tutoriel Python >Comment puis-je obtenir le chemin complet du répertoire du script Python actuel ?

Comment puis-je obtenir le chemin complet du répertoire du script Python actuel ?

Mary-Kate Olsen
Mary-Kate Olsenoriginal
2024-12-09 14:28:15713parcourir

How Can I Get the Full Path of the Current Python Script's Directory?

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()

Pour le répertoire de travail actuel :

import pathlib
pathlib.Path().resolve()

Python 2 et 3

Pour le répertoire du script en cours d'exécution :

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

Pour le travail actuel Annuaire :

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

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!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn