July 2015
Intermediate to advanced
1300 pages
87h 27m
English
Content preview from Visual Basic 2015 UnleashedBecome an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
Start your free trial


Understanding Permissions
The .NET Framework provides a high-level security mechanism over system resources, so it can happen that you attempt to access, in both reading or writing, directories or files but you do not have the required rights. To prevent your code from failing at runtime, you can check whether you have permissions. When working with files and directories, you need to check the availability of the System.Security.FileIOPermission object. For example, the following code asks the system (Demand method) if it has permissions to read local files:
Dim fp As New FileIOPermission(PermissionState.None)fp.AllLocalFiles = FileIOPermissionAccess.ReadTry fp.Demand()Catch ex As Security.SecurityException Console.WriteLine("You ...