Hello!

$ cat try.d
import std.file;

void main ()
{
        mkdir("D:\\TEST");
        remove("D:\\TEST");
}

$ ./try.exe

std.file.FileException@std\file.d(731): D:\TEST: Access Denied.
----------------
....


What I don't know about removing directories in Windows?
Why I can't remove directory which just time created?

Reply via email to