| 2737 | } |
| 2738 | |
| 2739 | File File::createTempFile (const String& fileNameEnding) |
| 2740 | { |
| 2741 | const File tempFile (getSpecialLocation (tempDirectory) |
| 2742 | .getChildFile ("temp_" + String::toHexString (Random::getSystemRandom().nextInt())) |
| 2743 | .withFileExtension (fileNameEnding)); |
| 2744 | |
| 2745 | if (tempFile.exists()) |
| 2746 | return createTempFile (fileNameEnding); |
| 2747 | |
| 2748 | return tempFile; |
| 2749 | } |
| 2750 | |
| 2751 | #if JUCE_UNIT_TESTS |
| 2752 |
nothing calls this directly
no test coverage detected