The examples here all refer to the security module.
List details of the security which applies to a specific file. This is most interesting in an ad-hoc situation when you’re trying to assess things using the interpreter.
1 2 3 4 | from winsys import dialogs, security
[filename] = dialogs.dialog("Choose file",("Filename", ""))
security.security(filename).dump()
|