c#.NET file acces denied problem




I was trying to access a file with the user having only read permission. the code looked like:

FileStream fs =new FileStream(
"c:\path\to\file.ext",
FileMode.Open); 

and it uset to throw exception “access denied”. After some investigations I’ve found that FileAccess.Read helps a lot.

FileStream fs = new FileStream(
"c:\path\to\file.ext",
FileMode.Open,
FileAccess.Read); 

Leave a Reply

  

  

  

You can use these HTML tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>