uniapp獲取軟體的根路徑(安卓)

小杨同学906發表於2024-08-12
getBootPath() {
        var that = this;
        let fullPath;
        plus.io.requestFileSystem(plus.io.PUBLIC_DOCUMENTS, function (fs) {
          let root = fs.root;
          fullPath = root.fullPath;
        })
        console.log(fullPath)
      },

plus.io 來請求檔案系統的訪問許可權

plus.io.PUBLIC_DOCUMENTS 表示請求公共文件目錄的檔案系統

相關文章