Hello,

I am running a script that creates a file which lists all the folders in a directory:
    
    foreach (string name; dirEntries("/Users/josh/", SpanMode.shallow)) {
        append("/Users/dirList.txt", name ~ "\n");
    }

But it seems to stop appending after 255 lines (this particular folder has 350 folders in all).  
When trying to read the created file:

   auto f = File("/Users/dirList.txt", "r");
   foreach (string line; lines(f)) {
       writeln(line);
   }
   f.close();

It writes out the lines, but after the last one I get "Bus error: 10"

Any thoughts on what im missing or doing wrong? 
   
I am currently using D 2.054 on Mac OSX Lion
The script was working with D 2.053 on Mac OSX Snow Leopard

Thanks,
Josh