3
我有一個方法可以處理fs.write操作導致的所有錯誤。 該方法有一個arg,即發生錯誤的文件的fd。從fd獲取文件路徑/名稱
有沒有一種方法可以使用提供的fd檢索文件路徑/名稱?
即:
handleWriteError: function (fd, err) {
// fetch the path/name using the fd, then:
console.log('Error occurred writing to %s/%s', path, name);
}
使用節點v0.12