Package: gio
Function gio:file-info-list-attributes
Lambda Listgio:file-info-list-attributes (info &optional namespace) ArgumentsReturn Value
The list of strings of all of the possible attribute types for the given namespace, or nil on error. Details
List the attributes of the file info. Examples
(let* ((path (glib-sys:sys-path "myfile.lisp"))
(file (g:file-new-for-path path))
(info (g:file-query-info file "standard::*" :none)))
(g:file-info-list-attributes info))
=> '("standard::type" "standard::is-hidden" "standard::is-backup"
"standard::is-symlink" "standard::name" "standard::display-name"
"standard::edit-name" "standard::copy-name" "standard::icon"
"standard::content-type" "standard::fast-content-type"
"standard::size" "standard::allocated-size"
"standard::symbolic-icon") | See also |
2026-03-22