vote up 9 vote down star
1

When calling DirectoryInfo.GetDirectories(".") on an instance of a DirectoryInfo class which points to a valid folder (excluding drive roots), the result is a DirectoryInfo array whose first (and only) element points to a invalid directory named the same as itself, below itself.

For example:

static void Main(string[] args)
{
    DirectoryInfo di = new DirectoryInfo("c:\\temp");
    DirectoryInfo[] dis = di.GetDirectories(".");
    Console.WriteLine(dis[0].FullName);
}

Prints out a non-existent directory:

c:\temp\temp

I understand that in Windows, a "." refers to the current directory. That might be acceptable to me if the method returned "c:\temp", but returning a fake subdirectory with the same name seems like absolutely the wrong behavior.

I should be able to assert that any DirectoryInfo object returned from this function actually exists.... right?!

I decompiled the class using .NET Reflector, but it leads to this method

internal static string[] InternalGetFileDirectoryNames(string path, string userPathOriginal, string searchPattern, bool includeFiles, bool includeDirs, SearchOption searchOption)"

Which is a BEAST and I don't feel like walking through the logic in my head. It's clearly a bug IMHO.

FYI - a "*" works as expected, before someone asks.

flag

79% accept rate
Interesting that the help mentions .. but not . – Greg Oct 30 '08 at 16:34
You have a good point. However, isn't this one of those things thats "always been this way" and everyone always filters out the . and .. directory listings? – ScottCher Oct 30 '08 at 16:35
@ScottCher in DOS if I do "dir ." in a directory, I don't get any non-existent results. I just get "." and ".." (both of which exist) – TheSoftwareJedi Oct 30 '08 at 16:37

1 Answer

vote up 7 vote down check

I can confirm what you say, and can't see any rational explanation for it, so I'm voting BUG.

I think so as well, I submitted it to Microsoft

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.