Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have 2 strings - dir1 and dir2, and I need to check if one is subdirectory for other. I tried to go with Contains method:

dir1.contains(dir2);

, but that also returns true, if directories have similar names, for example - c:\abc and c:\abc1 are not subdirectories, bet returns true. There must be a better way.

share|improve this question
what about directories that have multiple names, e.g. Symlinks? – David Heffernan Apr 11 '11 at 6:53

3 Answers

up vote 11 down vote accepted
DirectoryInfo di1 = new DirectoryInfo(dir1);
DirectoryInfo di2 = new DirectoryInfo(dir2);
bool isParent = di2.Parent.FullName == di1.FullName;

Or in a loop to allow for nested sub-directories, i.e. C:\foo\bar\baz is a sub directory of C:\foo :

DirectoryInfo di1 = new DirectoryInfo(dir1);
DirectoryInfo di2 = new DirectoryInfo(dir2);
bool isParent = false;
while (di2.Parent != null)
{
    if (di2.Parent.FullName == di1.FullName)
    {
        isParent = true;
        break;
    }
    else di2 = di2.Parent;
}
share|improve this answer
This works, thanks – andree Apr 11 '11 at 6:13
This works only if the directories lack the final slash. See Why isn't this DirectoryInfo comparison working? – Darcara Mar 10 at 17:23

I use:

private bool IsSubdir(string maindir, string subdir)
{
    return subdir.StartsWith(maindir + Path.DirectorySeparatorChar);
}
share|improve this answer
1  
This approach will fail if the subdir contains "\..\" which could result in a directory that passes the check but is NOT a subdirectory of maindir. – im_nullable Jan 8 at 1:02

Try:

dir1.contains(dir2+"\\");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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