* Creates a readable stream for a virtual file. * @param {string} filePath The path to the file * @param {object} [options] Stream options * @returns {ReadStream}
(filePath, options)
| 995 | * @returns {ReadStream} |
| 996 | */ |
| 997 | createReadStream(filePath, options) { |
| 998 | return new VirtualReadStream(this, filePath, options); |
| 999 | } |
| 1000 | |
| 1001 | /** |
| 1002 | * Creates a writable stream for a virtual file. |