FolderItem.Owner

From Xojo Documentation

Property (As String )


aFolderItem.Owner = newStringValue
or
StringValue = aFolderItem.Owner

New in 2005r1

Supported for all project types and targets.

Gets or sets the Owner of the FolderItem under Unix-based operating systems (macOS and Linux).

Notes

Use the FolderItem's Permissions property or the Permissions class to get and set permissions for the Owner. The Group property gets and sets the FolderItem's Group.

Example

Var f As New FolderItem
f = FolderItem.ShowOpenFileDialog("text/plain")
MessageBox(f.Owner)