Values.CreationPermissionsSourceSpecifies the permissions to set on newly created directories within the file system.
type nonrec t = {ownerUid : OwnerUid.t;The POSIX user ID to assign to newly created directories.
*)ownerGid : OwnerGid.t;The POSIX group ID to assign to newly created directories.
*)permissions : Permissions.t;The octal permissions to assign to newly created directories.
*)}val make :
ownerUid:OwnerUid.t ->
ownerGid:OwnerGid.t ->
permissions:Permissions.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Long of OwnerUid.t | `String of Permissions.t ]) list ]