| 14 | SC::FileSystemIterator::~FileSystemIterator() { Internal::destroy(recurseStack); } |
| 15 | |
| 16 | SC::Result SC::FileSystemIterator::enumerateNext() |
| 17 | { |
| 18 | Result res = enumerateNextInternal(currentEntry); |
| 19 | if (not res) |
| 20 | { |
| 21 | if (::strcmp(res.message, "Iteration Finished") != 0) |
| 22 | { |
| 23 | errorResult = res; |
| 24 | errorsChecked = false; |
| 25 | } |
| 26 | } |
| 27 | return res; |
| 28 | } |
| 29 | |
| 30 | SC::Result SC::FileSystemIterator::recurseSubdirectory() |
| 31 | { |
no outgoing calls