跳轉至

腳本開發 / 資源路徑 DFF.RSRC

資源文件可以在「管理 / 文件工具」中查看和管理, 當需要在腳本中操作資源文件時,需要使用 DFF.RSRC(...) 獲取資源文件的真實路徑。

參數 類型 必須 / 默認值 説明
file_path str 必須 資源文件相對路徑

使用 DFF.RESP_FILE(...) 時,file_path 參數直接填寫資源文件的相對路徑即可,無需使用 DFF.RSRC(...) 獲取真實路徑

示例
1
2
3
with open(DFF.RSRC('demo/data.txt')) as f:
    # 打開真實路徑為 /data/resources/demo/data.txt 的文件
    pass