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

Python Obtenez l'emplacement actuel du fichier

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

Python obtient un chemin complet

import os
# you have to be in the same directory as the file
file = 'myfile.txt'
# or also
file = 'directory/to/myfile.txt'

path = os.path.abspath(file)
The Nic

python écrivez dans le fichier

file = open(“testfile.txt”,”w”) 
 
file.write(“Hello World”) 
file.write(“This is our new text file”) 
file.write(“and this is another line.”) 
file.write(“Why? Because we can.”) 
 
file.close() 
Misty Macaw

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

chemin d'emplacement du fichier python

import os

print('getcwd:      ', os.getcwd())
print('__file__:    ', __file__)
Shoshy The Coder

Python Obtenez le chemin du fichier actuel

import pathlib
pathlib.Path(__file__).parent.absolute()
Pleasant Panda

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

Questions similaires à “Python Obtenez le chemin du fichier actuel”

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

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code