在Plotly中获取应用程序目录需要使用Python的os模块。您可以使用以下代码获取应用程序目录:
import os # 获取当前工作目录 current_directory = os.getcwd() print("Current Directory:", current_directory) # 获取应用程序目录 app_directory = os.path.dirname(os.path.abspath(__file__)) print("App Directory:", app_directory)
在这段代码中,os.getcwd()
函数将返回当前工作目录,而os.path.dirname(os.path.abspath(__file__))
将返回应用程序的目录。您可以根据需要选择其中一个来获取您想要的目录。