The MSDN constructor for a FileStream says that it may throw either an UnauthorizedAccessException or a SecurityException. Here's what MSDN says about these exceptions.

UnauthorizedAccessException: The exception that is thrown when the operating system denies access because of an I/O error or a specific type of security error.

SecurityException: The exception that is thrown when a security error is detected.

How are these two similar exceptions different? What situations will trigger either of them?

link|improve this question

78% accept rate
+1 hot security topic – Will Marcouiller Feb 26 '10 at 3:42
Don't use dotnet as a tag! – Joel Coehoorn Mar 1 '10 at 20:03
feedback

1 Answer

up vote 2 down vote accepted

A UnauthorizedAccessException is thrown when there is a permissions error accessing the file on disk. That is an error at the operating system level such as a normal user trying to overwrite an operating system file (like kernel32.dll).

A SecurityException is thrown if there is a security violation at the CLR level. For example if you are running as a low access ClickOnce application and attempt to read / write to a place in the file system forbidden by the CLR security settings in the process.

link|improve this answer
So if I tried to write/create a file on a network drive which the current user does not have write access to then it would throw a UnauthorizedAccessException? – Eric Anastas Feb 26 '10 at 3:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.