| 2524 | } |
| 2525 | |
| 2526 | FileInputStream* File::createInputStream() const |
| 2527 | { |
| 2528 | if (existsAsFile()) |
| 2529 | return new FileInputStream (*this); |
| 2530 | |
| 2531 | return nullptr; |
| 2532 | } |
| 2533 | |
| 2534 | FileOutputStream* File::createOutputStream (const int bufferSize) const |
| 2535 | { |
no test coverage detected