> Currently I am doing the following test to filter out the following
> directories I consider hidden.
>
> Hidden directories are: . or '.' or '..'
(in the following code you access s[1] without checking length first)
> repeat
> if (s[1] in ['.']) or (s = '..') then
> continue
Currently I am doing the following test to filter out the following
directories I consider hidden.
Hidden directories are: . or '.' or '..'
repeat
if (s[1] in ['.']) or (s = '..') then
continue;
[...process non-hidden directories here...]
until FindNext(...);
Is there a be