Open a folder with explorer.exe

Richard (Rikki) Andrew Cattermole richard at cattermole.co.nz
Sun Dec 29 01:14:24 UTC 2024


Not guaranteed to work on non-Windows (Posix does not unify this).

```d
void main(string[] args) {
         import std.process : browse;
         import std.path : dirName;
         browse(args[0].dirName);
}
```


More information about the Digitalmars-d-learn mailing list