CreateDirectory 사용권한

Program/C# 2008. 3. 6. 17:18
public FileSystemAccessRule (
	IdentityReference identity,
	FileSystemRights fileSystemRights,
	InheritanceFlags inheritanceFlags,
	PropagationFlags propagationFlags,
	AccessControlType type
)
 
또는
public FileSystemAccessRule (
	string identity,
	FileSystemRights fileSystemRights,
	InheritanceFlags inheritanceFlags,
	PropagationFlags propagationFlags,
	AccessControlType type
)
account는 사용자 식별타입입니다.
Domain 사용자라면 Domain\사용자ID
아니라면 컴퓨터명\사용자ID
등으로 사용할 수도 있습니다.
: