I have a OpenFileDialog and I am trying to set the default folder. Initially I had it set to Environment.GetFolderPath(Environment.SpecialFolder.Personal) + @
OpenFileDialog
Environment.GetFolderPath(Environment.SpecialFolder.Personal) + @
You're using @"\\....". Either get rid of the @ or change the \\ to \.
@"\\...."
\\
\
Or, try:
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal),"new_folder2")