I'm having trouble creating a directory that is supposed to be located in a user's documents file.
Code
: string pathString = System.IO.Path.Combine("%UserProfile%\\Documents", "MyDir");
System.IO.Directory.CreateDirectory(pathString);
Once this is run it doesn't create anything at all. I'm not sure exactly what I'm doing wrong here, I've also tried inputting the string manually with no luck.