On Thu Apr 25 04:28:23 2024 +0000, Elizabeth Figura wrote:
Sorry, that should be "(!ls || ls == ERROR_MORE_DATA)". The point is that special-casing ERROR_FILE_NOT_FOUND looks wrong.
OK, I've changed `ls != ERROR_FILE_NOT_FOUND` to `(!ls || ls == ERROR_MORE_DATA)` as requested.