G
Guest
I created a StreamReader object from a local file on my c:\ drive
StreamReader srTemp = new StreamReader("C:\\myFile.txt")
I then used a RegEx to strip out all the html and save what's left to a string object
So far so good. So now I'm left with just the text
Question
1.When I created a second streamreader object and pass in the name of this string I got this erro
The path is too long after being fully qualified. Make sure path is less than 260 characters.
2. What path is .net talking about
Thank
Mik
2.
StreamReader srTemp = new StreamReader("C:\\myFile.txt")
I then used a RegEx to strip out all the html and save what's left to a string object
So far so good. So now I'm left with just the text
Question
1.When I created a second streamreader object and pass in the name of this string I got this erro
The path is too long after being fully qualified. Make sure path is less than 260 characters.
2. What path is .net talking about
Thank
Mik
2.