Features:
Represents the TrusteePath object for a user.
Contains information about the path and the trustee rights for this path.
Returns the path of a Trustee object.
Object.Path
String.
Read-only.
The returned path can represent either a directory or a file on a volume.
See sample in Example.
Returns the rights of a TrusteePath object.
Object.Rights
String.
Read-only.
This example returns the rights of the next TrusteePath object in the collection.
Set filemgr = Createobject("ucx:NWFileMgr")
Set tpaths = filemgr.GetTrusteepaths("Admin","Sys")
tpaths.Reset()
While(tpaths.HasMoreElements)
Set path = tpaths.Next()
Print(path.Path &path.Rights)
Wend