Node.js 中 fs.writeFile() 方法的寫入參數包括:檔案路徑:要寫入的檔案的絕對或相對路徑。資料:要寫入檔案的資料(字串、Buffer 或資料塊數組)。選項(可選):包含以下可選屬性:encoding:資料編碼(預設為'utf8')mode:檔案權限模式(預設為0o666)flag:開啟檔案時的標記(預設為'w')
Node.js 檔案寫入參數
#在Node.js 中使用fs.writeFile()
方法寫入檔案時,可以傳遞以下參數:
1. 檔案路徑
#指定要寫入的檔案的路徑。可以是絕對路徑或相對於目前工作目錄的相對路徑。
2. 資料
要寫入檔案的資料。可以是字串、Buffer 或包含資料塊的陣列。
3. 選項(可選)
一個包含可選配置的 JavaScript 物件。可以包括以下屬性:
範例:##
<code class="javascript">const fs = require('fs'); fs.writeFile('myFile.txt', 'Hello world!', (err) => { if (err) throw err; console.log('File written successfully.'); }); // 使用选项 fs.writeFile('myFile2.txt', 'Hello again!', { encoding: 'ascii' }, (err) => { if (err) throw err; console.log('File written successfully with ASCII encoding.'); });</code>
詳細資訊:
以上是nodejs寫入檔案的參數有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!