“Pathlib Path of Current File” Respostas de código

Pathlib Path Obtenha o diretório do arquivo atual

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

Pathlib Path of Current File

from pathlib import Path

BASE_DIR = Path(__file__).resolve().parent.parent
TEMPLATES_DIR = BASE_DIR.joinpath('templates')
Busy Boar

Respostas semelhantes a “Pathlib Path of Current File”

Perguntas semelhantes a “Pathlib Path of Current File”

Procure respostas de código populares por idioma

Procurar outros idiomas de código