I'm doing a C# project for school.
I need to extract a .zip
file but i have a problem.
I get the path where the file that is going to be extract is with FolderBrowserDialog
and everything is ok, but the FolderBrowserDialog
gives me something like "C:\Users\Zé Eduardo\Music"
, but i need something like this "C:\\Users\\Zé Eduardo\\Music"
.
How can i transform "\"
to "\\"
?