Cet article présente principalement la méthode d'implémentation pour obtenir le répertoire actuel et le répertoire de niveau supérieur en python. Les amis qui en ont besoin peuvent se référer à
pour obtenir le chemin du fichier actuel :
from os import path d = path.dirname(__file__) #返回当前文件所在的目录 # __file__ 为当前文件, 若果在ide中运行此行会报错,可改为 #d = path.dirname('.')
parent_path = os.path.dirname(d) #获得d所在的目录,即d的父级目录 parent_path = os.path.dirname(parent_path) ##获得parent_path所在的目录即parent_path的父级目录
abspath = path.abspath(d) #返回d所在目录规范的绝对路径
Résumé
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!