vote up 1 vote down star
2

Given a string that is to a directory, how can I make sure there's a closing \ character? For example, C:\foo is a directory, and so is C:\foo\. Is there a System.IO.Path method that ensures there's a ending \?

flag

4 Answers

vote up 1 vote down

Presumably you want to append a separator so that you can subsequently append filenames using string concatenation.

In which case Kyle Rozendo's initial advice is sound: consider whether you really need to do that. If you always append filenames using Path.Combine, you don't need to care whether your path has a trailing separator.

If you still want to do this, you have an edge case to consider. The path "D:" is a valid relative path that references the current working directory on the D: drive. Appending a separator will change this meaning to reference the root directory on the D: drive. Do you really want this? I'm guessing not. So I would special case this thus:

public static string AppendSeparator(string path)
{
    if (path == null) throw new ArgumentNullException("path");
    if (path.Length == 0) return path;
    if (path[path.Length - 1] == Path.VolumeSeparatorChar) return path;
    if (path[path.Length - 1] == Path.DirectorySeparatorChar) return path;
    if (path[path.Length - 1] == Path.AltDirectorySeparatorChar) return path;
    return path + Path.DirectorySeparatorChar;
}

You can then use this as follows - the last example converts the input path to an absolute path before appending the separator:

path = AppendSeparator(@"C:\SomePath\");
path = AppendSeparator(@"C:\SomePath");
path = AppendSeparator(@"D:");
path = AppendSeparator(Path.GetFullPath("D:"));
link|flag
vote up 4 vote down
if (!filename.EndsWith(Path.DirectorySeparatorChar))
    filename += Path.DirectorySeparatorChar;
link|flag
1  
You might also want to check for Path.AltDirectorySeparatorChar – Joe Nov 7 at 10:38
vote up 0 vote down

Hay, what about using this condition

if (s.IndexOf('\\') == s.Length - 1)

where s is your path string "amr\" will give true "amr" will give false

link|flag
That will work for all cases except a zero-length string. – Robert Harvey Nov 7 at 8:01
IndexOf gives the first apperance of the searched string, quite likely the one after the drive. – Wilhelm Nov 7 at 8:06
1  
You should rather use s.EndsWith or s.LastIndexOf. But EndsWith will work with zero-length strings. – Majkel Nov 7 at 8:23
You should ideally check for Path.DirectorySeparatorChar and Path.AltDirectorySeparatorChar rather than a hardwired backslash. – Joe Nov 7 at 10:39
vote up 5 vote down

Use Path.Combine(Path1, Path2)

EDIT:

To be more specific, Path.Combine(str, str) makes sure of path correctness, so in order to be absolutely sure, all you need to do is:

Path.Combine("C:\\PathName", "\\");

Which will ensure that the path is correct. It will not allow double slashes, so this is the safest bet.

link|flag
But what about when the OP has a single string to check? – RCIX Nov 7 at 8:21
Path.Combine( "C:\\foo", "\\" ). Path.Combine takes care of path correctness, so it will not allow double \ at the end. – Majkel Nov 7 at 8:24
As Majkel says. I will add that to the post to be more specific. – Kyle Rozendo Nov 7 at 10:16
Path.Combine(path, "\\") doesn't work. If you attempt to combine two absolute paths using Path.Combine, it will simply return the second absolute path. So the result in this case will be "\\". Similarly the result of Path.Combine(@"C:\SomePath", @"D:\OtherPath") will be @"D:\OtherPath" – Joe Nov 7 at 10:47
Won't this simply return '\' anyway? – richeym Nov 7 at 10:49
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.