vote up 4 vote down star
1

If i have lots of directory names either as literal strings or contained in variables, what is the easiest way of combining these to make a complete path?

I know of

Path.Combine
but this only takes 2 string parameters, i need a solution that can take any number number of directory parameters.

e.g:

string folder1 = "foo";
string folder2 = "bar";

CreateAPath("C:", folder1, folder2, folder1, folder1, folder2, "MyFile.txt")

Any ideas? Does C# support unlimited args in methods?

flag

5 Answers

vote up 13 vote down check

Does C# support unlimited args in methods?

Yes, have a look at the params keyword. Will make it easy to write a function that just calls Path.Combine the appropriate number of times, like this (untested):

string CombinePaths(params string[] parts) {
    string result = String.Empty;
    foreach (string s in parts) {
        result = Path.Combine(result, s);
    }
    return result;
}
link|flag
@OregonGhost: +1, but switch "" to String.Empty. – sixlettervariables Sep 27 '08 at 23:32
And the reason why: blogs.msdn.com/brada/archive/… – Kev Sep 28 '08 at 1:56
According to bytes.com/forum/thread453111.html , there is exactly no difference between the two and the Compiler will actually produce exactly the same IL for both. But for readability, I'll change it. – OregonGhost Sep 28 '08 at 12:35
vote up 0 vote down

I prefer to use DirectoryInfo vs. the static methods on Directory, because I think it's better OO design. Here's a solution with DirectoryInfo + extension methods, that I think is quite nice to use:

    public static DirectoryInfo Subdirectory(this DirectoryInfo self, params string[] subdirectoryName)
    {
        Array.ForEach(
            subdirectoryName, 
            sn => self = new DirectoryInfo(Path.Combine(self.FullName, sn))
            );
        return self;
    }

I don't love the fact that I'm modifying self, but for this short method, I think it's cleaner than making a new variable.

The call site makes up for it, though:

        DirectoryInfo di = new DirectoryInfo("C:\\")
            .Subdirectory("Windows")
            .Subdirectory("System32");

        DirectoryInfo di2 = new DirectoryInfo("C:\\")
            .Subdirectory("Windows", "System32");

Adding a way to get a FileInfo is left as an exercise (for another SO question!).

link|flag
Could someone explain why my answer is voted down? Is there a problem I didn't see? – Jay Bazuzi Sep 28 '08 at 16:00
vote up 6 vote down

LINQ to the rescue again. The Aggregate extension function can be used to accomplish what you want. Consider this example:

string[] ary = new string[] { "c:\\", "Windows", "System" };
string path = ary.Aggregate((aggregation, val) => Path.Combine(aggregation, val));
Console.WriteLine(path); //outputs c:\Windows\System
link|flag
Nice. Way to know the available sequence operations! – Jay Bazuzi Sep 28 '08 at 16:00
Microsoft did a really nice job with LINQ. Anytime I need to do something funky with a collection I immediately go look in the LINQ libraries. – Jason Jackson Sep 28 '08 at 17:12
vote up 1 vote down

Yet another solution:

public static string CombinePaths(params string[] s) {
    if (s.Length == 0)
    	return string.Empty;
    return Path.Combine(s[0], CombinePaths(s.Skip(1).ToArray()));
}
link|flag
What's computational complexity of your algorithm, depending on s.Length? – Ilya Ryzhenkov Sep 27 '08 at 21:36
vote up 0 vote down

Try this one:

public static string CreateDirectoryName(string fileName, params string[] folders)
{
    if(folders == null || folders.Length <= 0)
    {
        return fileName;
    }

    string directory = string.Empty;
    foreach(string folder in folders)
    {
        directory = System.IO.Path.Combine(directory, folder);
    }
    directory = System.IO.Path.Combine(directory, fileName);

    return directory;
}

The params makes it so that you can append an infinite amount of strings.

Path.Combine does is to make sure that the inputted strings does not begin with or ends with slashes and checks for any invalid characters.

link|flag
Please, let System.IO.Path methods handle things like trimming or adding backslashes. – OregonGhost Sep 27 '08 at 20:56
OK, I say it differently. Why re-invent the wheel? Does that hard-coded thing really look more clear to you? What if you're running on a *NIX system with the forward slash being the path separator? What if one of the paths is absolute? Path.Combine handles that as well. – OregonGhost Sep 27 '08 at 21:08
Oh common, now you're really just re-inventing Path.Combine. It's there, so use it: weblogs.asp.net/rchartier/archive/… – OregonGhost Sep 27 '08 at 21:12
Voted down because it is still wrong about Path.Combine, will still fail with absolute paths, handling of wildcards is not clear and is a potentially efficient, but complicated solution. – OregonGhost Sep 27 '08 at 21:38
Fixed it all. Happy now? – Seb Nilsson Sep 27 '08 at 21:46
show 1 more comment

Your Answer

Get an OpenID
or

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