Package: gio

GEnum gio:file-attribute-type

Declaration

(gobject:define-genum "GFileAttributeType" file-attribute-type
  (:export t
   :type-initializer "g_file_attribute_type_get_type")
  (:invalid 0)
  (:string 1)
  (:byte-string 2)
  (:boolean 3)
  (:uint32 4)
  (:int32 5)
  (:uint64 6)
  (:int64 7)
  (:object 8)
  (:stringv 9))  

Values

:invalid
Indicates an invalid or uninitialized type.
:string
A UTF8 string.
:byte-string
A string of non-zero bytes.
:boolean
A boolean value.
:uint32
An unsigned 4-byte/32-bit integer.
:int32
A signed 4-byte/32-bit integer.
:uint64
An unsigned 8-byte/64-bit integer.
:int64
A signed 8-byte/64-bit integer.
:object
A g:object object.
:stringv
An array of strings.

Details

The data types for file attributes.
 

See also

2026-03-22