Obtenir un chemin de fichier absolu en Python
Lorsque vous travaillez avec des fichiers, il est essentiel de connaître leurs chemins absolus pour permettre des opérations de fichiers transparentes et éviter ambiguïté. En Python, obtenir le chemin absolu d'un fichier est simple, comme démontré ci-dessous.
Utilisation de os.path.abspath
La fonction os.path.abspath() fournit un moyen élégant d’obtenir le chemin absolu du fichier. Il prend un chemin de fichier comme argument et renvoie le chemin absolu correspondant. Par exemple, considérons le code Python suivant :
import os filepath = "mydir/myfile.txt" absolute_path = os.path.abspath(filepath) print(absolute_path)
Ce code imprimera le chemin absolu du fichier myfile.txt dans le répertoire mydir. Le résultat peut ressembler à ce qui suit :
C:/example/cwd/mydir/myfile.txt
Polyvalence et compatibilité
os.path.abspath() convient non seulement aux chemins relatifs mais également aux chemins absolus . Si vous fournissez un chemin absolu comme argument, la fonction renverra le même chemin sans modifications.
import os absolute_filepath = "C:/example/cwd/mydir/myfile.txt" absolute_path = os.path.abspath(absolute_filepath) print(absolute_path)
Ce code imprimera toujours le chemin absolu d'origine, démontrant la nature polyvalente de la fonction.
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!