https://github.com/vweevers/fs-maybe-open
Open a file unless it's already a file descriptor.
https://github.com/vweevers/fs-maybe-open
Last synced: about 1 year ago
JSON representation
Open a file unless it's already a file descriptor.
- Host: GitHub
- URL: https://github.com/vweevers/fs-maybe-open
- Owner: vweevers
- License: mit
- Created: 2016-12-18T10:02:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-12-11T17:46:40.000Z (over 5 years ago)
- Last Synced: 2025-03-28T21:39:05.679Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# fs-maybe-open
**Open a file unless it's already a file descriptor.**
[](https://www.npmjs.org/package/fs-maybe-open) [](https://www.npmjs.org/package/fs-maybe-open) [](http://travis-ci.org/vweevers/fs-maybe-open) [](https://ci.appveyor.com/project/vweevers/fs-maybe-open) [](https://david-dm.org/vweevers/fs-maybe-open)
## usage
```js
const maybeOpen = require('fs-maybe-open')
, fs = require('fs')
function readExactly(fdOrFile, pos, length, done) {
maybeOpen(fdOrFile, 'r', function (err, fd, maybeClose) {
if (err) return done(err)
fs.read(fd, Buffer(length), 0, length, pos, function (err, bytesRead, buf) {
if (err) return maybeClose(done, err)
if (bytesRead !== length) {
return maybeClose(done, new Error('End of file'))
}
maybeClose(done, null, buf)
})
})
}
```
The `maybeOpen` function has the same signature as [`fs.open(path, flags[, mode], callback)`](https://nodejs.org/api/fs.html#fs_fs_open_path_flags_mode_callback). Except:
- If `path` is a file descriptor, opening is a noop
- The open `callback` also receives a `maybeClose(callback, err, ...args)` function, which calls `fs.close` for you if `path` was a filename. An error from `fs.close` (if any) will be [combined](https://github.com/matthewmueller/combine-errors) with your error (if any).
## install
With [npm](https://npmjs.org) do:
```
npm install fs-maybe-open
```
## license
[MIT](http://opensource.org/licenses/MIT) © Vincent Weevers