ディレクトリの列挙に関して「etc」の特別な点を知っている人はいますか?
public class Foo
{
[Test]
public void Etc()
{
var etc = new DirectoryInfo(@"C:\Windows\System32\drivers\etc");
Assert.True(etc.Exists);
/* Expected: not <empty> But was: <empty> */
Assert.IsNotEmpty(etc.Parent.GetDirectories(etc.Name));
}
}