“OS obtenga el directorio actual” Código de respuesta

Python obtiene el directorio actual

import os

print(os.getcwd())
Busy Bat

Obtener directorio de archivo python

import os 
dir_path = os.path.dirname(os.path.realpath(__file__))
Agreeable Ape

OS obtenga el directorio actual

import os

#Get Current working Directory
currentDirectory = os.getcwd()

#Change the Current working Directory
os.chdir('/home/varun')
Agreeable Alpaca

Obtenga el directorio de trabajo Python

import os
os.getcwd()
Outrageous Opossum

Obtenga el directorio actual Python

import os
current_working_directory = os.getcwd()
print(current_working_directory) # should print the cwd

""" Bonus: If you want to change cwd, without moving file,
use the following method"""
os.chdir("path/to/directory")
Psych4_3.8.3

Python obtiene el directorio actual

>>> import os

>>> os.getcwd()
'C:\\Program Files\\PyScripter'

>>> os.getcwdb()
b'C:\\Program Files\\PyScripter'
SAMER SAEID

Respuestas similares a “OS obtenga el directorio actual”

Preguntas similares a “OS obtenga el directorio actual”

Más respuestas relacionadas con “OS obtenga el directorio actual” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código