在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__))
將返回應用程序的目錄。您可以根據需要選擇其中一個來獲取您想要的目錄。