If there a more efficient way to do the following:

DirectoryInfo di = new DirectoryInfo(@"c:\");
newFileName = Path.Combine(di.FullName, "MyFile.Txt");

I realise that it’s only two lines of code, but given that I already have the directory, it feels like I should be able to do something like:

newFileName = di.Combine(“MyFile.txt”);

EDIT:

Should have been more clear - I already have the path for another purpose, so:

DirectoryInfo di = MyFuncReturnsDir();
newFileName = Path.Combine(di.FullName, "MyFile.Txt");
link|improve this question

This doesn't need fixing, it is already as compact and reliable as it can get. You could write it in a single line, makes it less readable. – Hans Passant Jun 11 '10 at 15:16
feedback

2 Answers

up vote 5 down vote accepted

Why not just do newFileName = Path.Combine(@"c:\", "MyFile.Txt");?

As you say, you already have the path.

link|improve this answer
1  
+1, was my first thought too. – OregonGhost Jun 11 '10 at 14:22
I've edited my post - I have the DirectoryInfo object for a reason – pm_2 Jun 11 '10 at 14:31
@pm_2: I'm not sure that it would make things better, but you could always write newFileName = Path.Combine(MyFuncReturnsDir().FullName, "MyFile.Txt"); if you want it on one line. – ho1 Jun 11 '10 at 14:41
I just wanted to see if there was a more efficient way of doing it. – pm_2 Jun 11 '10 at 15:20
feedback

@ho1 is right.

You can also write an extension method (C# 3.0+):

public static class DirectoryInforExtensions
{
  public static string Combine(this DirectoryInfo directoryInfo, string fileName)
  {
    return Path.Combine(di.FullName, fileName);
  }
}

and use it by doing

newFileName = di.Combine("MyFile.txt");
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.