我正在使用 NodeJS 的 Box SDK,並且有一個下載檔案的功能。 我只是需要將下載設定為放置在專案子資料夾中 我已閱讀文檔,但找不到任何相關參數
async function downloadBoxFile(fileID, fileName) { try { // Load configuration const config = loadConfiguration(); const { clientID, clientSecret, enterpriseID } = config.boxConfiguration; // Authenticate Box client const boxClient = boxAuthentication(clientID, clientSecret, enterpriseID); const fileReadStream = await boxClient.files.getReadStream(fileID, null, { fields: 'modified_at, size, sha1, owned_by' }); const writeStream = fs.createWriteStream(fileName); fileReadStream.pipe(writeStream); return new Promise((resolve, reject) => { fileReadStream.on('end', () => { writeLog('> File downloaded successfully:' + fileName); resolve(); }); fileReadStream.on('error', (error) => { console.log('Error downloading file:', error); writeLog('Error downloading file:', error); reject(error); }); }); } catch (error) { console.log('Error downloading file:', error); writeLog('Error downloading file:', error); throw error; } }
我設法解決這個問題,只需將路徑參數傳遞給函數並附加到檔案名稱