try one of these changes:
folderlocation = @"C:\Users\Mike\Desktop";
OR
folderlocation = @"C:[\]Users[\]Mike[\]Desktop";
Putting @ in front of a string tells the program not to use escape characters. I think MySQL may use backslashes to escape characters as well, so using brackets will squash that.