| 653 | } |
| 654 | |
| 655 | File File::getNonexistentSibling (const bool putNumbersInBrackets) const |
| 656 | { |
| 657 | if (! exists()) |
| 658 | return *this; |
| 659 | |
| 660 | return getParentDirectory().getNonexistentChildFile (getFileNameWithoutExtension(), |
| 661 | getFileExtension(), |
| 662 | putNumbersInBrackets); |
| 663 | } |
| 664 | |
| 665 | //============================================================================== |
| 666 | String File::getFileExtension() const |
no test coverage detected