alejandro.alvarez5 70bb213259 articulo | 3 年之前 | |
---|---|---|
.. | ||
LICENSE | 3 年之前 | |
README.md | 3 年之前 | |
index.js | 3 年之前 | |
package.json | 3 年之前 |
Do stuff with an open file, knowing it will finally be closed
Because the built-in way requires way too much boilerplate.
$ npm install with-open-file
const withOpenFile = require('with-open-file')
withOpenFile('foo.txt', 'r', fd => {
// Process file using fd
})
withOpenFile.sync('foo.txt', 'r', fd => {
// Process file synchronously using fd
})
Returns a Promise
wrapping the result of calling callback
with the requested file descriptor.
Returns the result of calling callback
with the requested file descriptor.
Arguments as supported by fs.openSync
Type: function
MIT © Raphael von der Grün