* Read a chunk of the content of a file.
(
path: string,
offset: number,
length: number,
encoding: Encoding = 'utf8'
)
| 274 | * Read a chunk of the content of a file. |
| 275 | */ |
| 276 | readFileChunk( |
| 277 | path: string, |
| 278 | offset: number, |
| 279 | length: number, |
| 280 | encoding: Encoding = 'utf8' |
| 281 | ) { |
| 282 | return FileAccessNative.readFileChunk(path, offset, length, encoding); |
| 283 | }, |
| 284 | |
| 285 | /** |
| 286 | * Read file metadata. |
nothing calls this directly
no test coverage detected
searching dependent graphs…