How to programmatically check/set access permissions to a network drive? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T10:35:40Zhttp://stackoverflow.com/feeds/question/807627http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/807627/how-to-programmatically-check-set-access-permissions-to-a-network-drive0How to programmatically check/set access permissions to a network drive?SnOrfus2009-04-30T15:51:17Z2009-04-30T15:59:27Z
<p>How do you check to see if you have access (yet - because it will work fine after you have navigated there at least once before in this windows session and entered name/pass) to a network drive without waiting for the IOException when trying to access it?</p>
<p>And on that note, suppose that I can get my users name/pass via dialog, how do I set their access permissions to that network folder?</p>
http://stackoverflow.com/questions/807627/how-to-programmatically-check-set-access-permissions-to-a-network-drive/807671#8076711Answer by Jon B for How to programmatically check/set access permissions to a network drive?Jon B2009-04-30T15:59:27Z2009-04-30T15:59:27Z<p>In general, I think it is better to just handle the exception instead. You can't be 100% positive that you have access between checking and trying to access a drive. Not to mention all the other errors that could happen.</p>