Quote:
Originally Posted by BstrucT
StreamReader readnow = new StreamReader
(@"C:/"
+ txtOpenName.Text);
|
I've never seen or used this before, is it a requirement for C#? Is that a regular expression of some kind?
Quote:
Originally Posted by BstrucT
\Documents and Settings\User\My Documents\Synaps Files\Synaps
|
I would assume it's because you're not escaping your backslashes, but I don't know if that's necessary in C#
Also, you use a forward slash in your new filepath...technically that shouldn't work I think.