Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

FileIOPermission Constructor (FileIOPermissionAccess, String^)

 

Initializes a new instance of the FileIOPermission class with the specified access to the designated file or directory.

Namespace:   System.Security.Permissions
Assembly:  mscorlib (in mscorlib.dll)

public:
FileIOPermission(
	FileIOPermissionAccess access,
	String^ path
)

Parameters

access
Type: System.Security.Permissions::FileIOPermissionAccess

A bitwise combination of the FileIOPermissionAccess enumeration values.

path
Type: System::String^

The absolute path of the file or directory.

Exception Condition
ArgumentException

The access parameter is not a valid value of FileIOPermissionAccess.

-or-

The path parameter is not a valid string.

-or-

The path parameter does not specify the absolute path to the file or directory.

This constructor allows only one of the FileIOPermissionAccess values to be specified for the specified file or directory. Use the AddPathList method to define complex permissions.

The following code example shows the use of the FileIOPermission::FileIOPermission(FileIOPermissionAccess, String^) constructor to create a new instance of the FileIOPermission class, which provides complete access to the C:\test_r file.

FileIOPermission^ f2 = gcnew FileIOPermission( FileIOPermissionAccess::Read,"C:\\test_r" );
f2->AddPathList( (FileIOPermissionAccess) (FileIOPermissionAccess::Write | FileIOPermissionAccess::Read), "C:\\example\\out.txt" );
try
{
 f2->Demand();
}
catch (SecurityException^ s)
{
 Console::WriteLine(s->Message);
}

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft