Click or drag to resize
Galactic API

DirectorySetOwner Method (String, DirectorySecurity, DirectoryEntry, Boolean)

Sets the owner of a directory.

Namespace:  Galactic.FileSystem
Assembly:  Galactic.FileSystem (in Galactic.FileSystem.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax
public static bool SetOwner(
	string path,
	ref DirectorySecurity security,
	DirectoryEntry owner,
	bool commitChanges
)

Parameters

path
Type: SystemString
The path to the directory to have the ownership set on.
security
Type: System.Security.AccessControlDirectorySecurity
The DirectorySecurity object of the directory that will be changed.
owner
Type: System.DirectoryServicesDirectoryEntry
The directy entry that should take ownership of the entry.
commitChanges
Type: SystemBoolean
Indicates whether changes should be commited to this entry. Useful when combining multiple commands.

Return Value

Type: Boolean
True if the ownership could be set. False otherwise.
See Also