GET_OWNER owner name of file or directory
Contents
Inputs
- p: path to examine
Outputs
- n: owner, or empty if path does not exist
function n = get_owner(file, backend) arguments file {mustBeTextScalar} backend (1,:) string = ["java", "dotnet", "python", "sys"] end fun = hbackend(backend, "get_owner"); n = fun(file); end