private void anotherMethod()
{
    DirectoryInfo d = new DirectoryInfo("D\\:");
    string s = included(d);
     ... // do something with s
}

private string included(DirectoryInfo dir)
{
    if (dir != null)
    {
        if (included(dir.FullName))
        {
            return "Full";
        }
        else if (dir.Parent != null) // ERROR
        {
            if (included(dir.Parent.FullName))
            {
                return "Full";
            }
        }
        ...
    }
    ...
}

The above code is what I'm using, it doesn't work however. It throws an error:

object reference not set to an instance of an object

dir.FullPath is B:\ so it has no parent but why does dir.Parent != null give an error?

How can I check to see if a parent directory exists for a given directory?

Notice that I have two "Included" methods:

  • included(string s)
  • included(DirectoryInfo dir)

for the purpose of this you can just assume that included(string s) returns false

link|improve this question

3  
Please give a short but complete program which demonstrates the problem. It's unclear at the moment. – Jon Skeet Sep 1 '11 at 13:46
1  
my guess code in included() method somehow removes dir reference. Can you show what that method does? – Reniuz Sep 1 '11 at 13:57
@Reniuz dir is clearly not passed as ref or out. How could it alter the reference in the current method? – dlev Sep 1 '11 at 14:05
@dlev its just my guess. Code looked like it wasn't copy/pasted so maybe something was missed. – Reniuz Sep 1 '11 at 14:15
feedback

3 Answers

up vote 1 down vote accepted

Fix: else if (dir != null && dir.Parent != null)

link|improve this answer
Fixed with this, thanks Leon. – bobble14988 Sep 1 '11 at 14:08
feedback
    public static bool ParentDirectoryExists(string dir)
    {
        DirectoryInfo dirInfo = Directory.GetParent(dir);
        if ((dirInfo != null) && dirInfo.Exists)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
link|improve this answer
feedback

You should be able to check dir.Parent against null, according to this:

The parent directory, or a null reference (Nothing in Visual Basic) if the path is null or if the file path denotes a root (such as "\", "C:", or * "\server\share").

The problem is, like others pointed out already, you're accessing a method on a null reference (dir)

Source

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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