Christian Matos 35195f1065 IOS | hace 4 años | |
---|---|---|
.. | ||
LICENSE | hace 4 años | |
README.md | hace 4 años | |
index.js | hace 4 años | |
package.json | hace 4 años |
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