[Issue 7223] Access violation when using rmdirRecurse on folder without modify permissions
    via Digitalmars-d-bugs 
    digitalmars-d-bugs at puremagic.com
       
    Mon Jan 26 19:20:17 PST 2015
    
    
  
https://issues.dlang.org/show_bug.cgi?id=7223
AndyC <andy at squeakycode.net> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |andy at squeakycode.net
         Resolution|---                         |FIXED
--- Comment #3 from AndyC <andy at squeakycode.net> ---
I used this test code on windows x64 (and linux x64), using dmd 2.066.1:
import std.file, std.stdio;
void main()
{
    try
    {
        rmdirRecurse("/tmp/foo");
    }
    catch (Exception e)
    {
        writeln("Got the exception");
    }
}
I "Got the exception" in both cases.
Tough to say when this was fixed.
--
    
    
More information about the Digitalmars-d-bugs
mailing list