data persistence problem

I having this problem with datapersistence, when i try to enter a path for the filestream like the one below,Unity bring an error about unknown escape sequences, i’m on windows and this is how paths are and i want to write to it but the escape sequence erro r come up, does anyone know the answer to this problem, thank for answering ahead of time

FileStream file = File.Create("C:\Users\admin\Documents\NoNameYet\Assets\Bitmission	est.bit");

You could use this line:

FileStream file = File.Create("C:\\Users\\admin\\Documents\\NoNameYet\\Assets\\Bitmission\	est.bit");

For an explanation of escape sequences I suggest reading these pages on Wikipedia and MSDN.

Alternatively

FileStream file = File.Create(@"C:\Users\admin\Documents\NoNameYet\Assets\Bitmission	est.bit");

For an explanation of verbatim string literals please see this page on MSDN.