J
Jason Huang
Hi,
In my C# web application I have a code as:
FileStream fs = new FileStream(@"c:\temp\AAA.txt" , FileMode.OpenOrCreate,
FileAccess.ReadWrite);
When I execute the application, it gave me an error saying refusing access
to that file.
I have the AAA.txt on client's PC's c:\temp\AAA.txt, and it's not readonly.
What could I have done wrong?
Thanks for help.
Jason
In my C# web application I have a code as:
FileStream fs = new FileStream(@"c:\temp\AAA.txt" , FileMode.OpenOrCreate,
FileAccess.ReadWrite);
When I execute the application, it gave me an error saying refusing access
to that file.
I have the AAA.txt on client's PC's c:\temp\AAA.txt, and it's not readonly.
What could I have done wrong?
Thanks for help.
Jason