File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -3733,9 +3733,14 @@ added: v10.0.0
3733
3733
3734
3734
A ` FileHandle ` object is a wrapper for a numeric file descriptor.
3735
3735
Instances of ` FileHandle ` are distinct from numeric file descriptors
3736
- in that, if the ` FileHandle ` is not explicitly closed using the
3737
- ` filehandle.close() ` method, they will automatically close the file descriptor
3736
+ in that they provide an object oriented API for working with files.
3737
+
3738
+ If a ` FileHandle ` is not closed using the
3739
+ ` filehandle.close() ` method, it might automatically close the file descriptor
3738
3740
and will emit a process warning, thereby helping to prevent memory leaks.
3741
+ Please do not rely on this behavior in your code because it is unreliable and
3742
+ your file may not be closed. Instead, always explicitly close ` FileHandle ` s.
3743
+ Node.js may change this behavior in the future.
3739
3744
3740
3745
Instances of the ` FileHandle ` object are created internally by the
3741
3746
` fsPromises.open() ` method.
You can’t perform that action at this time.
0 commit comments