“Python Zdobądź ścieżkę bieżącego pliku” Kod odpowiedzi

Python Uzyskaj bieżącą lokalizację pliku

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

Python zdobądź pełną ścieżkę

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 zapisz do pliku

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

Plik Phil Prepurant Directory 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

ścieżka lokalizacji pliku Python

import os

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

Python Zdobądź ścieżkę bieżącego pliku

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

Odpowiedzi podobne do “Python Zdobądź ścieżkę bieżącego pliku”

Pytania podobne do “Python Zdobądź ścieżkę bieżącego pliku”

Więcej pokrewnych odpowiedzi na “Python Zdobądź ścieżkę bieżącego pliku” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu