| 2341 | bool File::setCreationTime (const Time& t) const { return setFileTimesInternal (0, 0, t.toMilliseconds()); } |
| 2342 | |
| 2343 | bool File::loadFileAsData (MemoryBlock& destBlock) const |
| 2344 | { |
| 2345 | if (! existsAsFile()) |
| 2346 | return false; |
| 2347 | |
| 2348 | FileInputStream in (*this); |
| 2349 | return in.openedOk() && getSize() == in.readIntoMemoryBlock (destBlock); |
| 2350 | } |
| 2351 | |
| 2352 | String File::loadFileAsString() const |
| 2353 | { |
no test coverage detected