From: Vladimir Prus (ghost_at_[hidden])
Date: 2005-01-31 03:40:20


matthias wrote:

> However I am getting a strange error when I start my app: When iterating
> through a directory I suddenly get the message: Aborted.

Most likely, an exception is thrown but is never caught. I suggest you wrap
the entire function in a try/catch block and print the caught exception.

- Volodya