Why when i give the path "c:" it changed me directly to application folder?

    static void Main(string[] args)
    {
        DirectoryInfo dir = new DirectoryInfo("c:");
        Console.WriteLine(dir.FullName);
        Console.ReadLine();
    }

The output is the following:

c:\users...\documents\visual studio 2010\projects\consoleApplication9\bin\debug

But when I give @"c:\" it goes to disk c: despite that "d:" and @"d:\" takes to disk d:.

So I need a way to let "c:" takes to disk c:

Thanks in advance!

link|improve this question

2  
Because that's how it's worked since 1983 and it would be confusing to change it now! – Eric Lippert Feb 3 at 14:47
Try DirectoryInfo dir = new DirectoryInfo("c:\\"); or DirectoryInfo dir = new DirectoryInfo(@"c:\");. – Fuex Feb 3 at 14:51
doesn't work for my application my application i just edit my question .. check it out – Mur Haf Soz Feb 3 at 14:56
feedback

4 Answers

up vote 3 down vote accepted
static void Main(string[] args) 
    { 
        string YourDir = "c:";

        if (!YourDir.Substring(YourDir.Length - 1, 1).Equals(@"\"))
            YourDir += @"\";
        DirectoryInfo dir = new DirectoryInfo(YourDir); 
        Console.WriteLine(dir.FullName); 
        Console.ReadLine(); 
    } 
link|improve this answer
you are the only who got my point .. so i guess that this's the only way to do right thanks alot – Mur Haf Soz Feb 3 at 14:57
you are the only who got my point .. so i guess that this's the only way to do right thanks alot – Mur Haf Soz Feb 3 at 14:58
3  
@MurHafSoz: If lots of people are failing to understand you, you should consider explaining yourself more clearly. – Jon Skeet Feb 3 at 16:31
5  
@MurHafSoz: I assure you that you did ask for an explanation. Your question begins with "why does", which is a request for an explanation. If you wanted to know how to do something then your question should have begun with "how do I". – Eric Lippert Feb 4 at 0:40
2  
What's up with the substring and the equals? Why not just EndsWith? – harold Feb 4 at 16:46
show 1 more comment
feedback

Just "c:" means "the current directory on the C drive" whereas @"c:\" means "root of the C drive". This works the same way from a command prompt...

link|improve this answer
feedback

C: is just the volume specifier, so it will change to your current path on that volume, which would be the working path of the application.

D: takes you to root simply because your current folder for that volume happens to be at root.

link|improve this answer
that means you should be using `C:` which specifies the path on the disk as well – linkerro Feb 3 at 14:41
feedback

enter image description here

Use the following

  static void Main(string[] args)
  {          
      DirectoryInfo dir = new DirectoryInfo(@"c:\");
      Console.WriteLine(dir.FullName);
      Console.ReadLine();
  }       

The Base Directory at the time when you do c: the application doesn't understand that so it returns the Directory of where the application was launched / run from.

Notice that dir = {.} if you would have passed in a literal directory path you would have gotten the expected results..

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.