Free the returned object with [gobject.object.ObjectWrap.unref].
File.queryFilesystemInfo
gio.file_info.FileInfo queryFilesystemInfo(string attributes, gio.cancellable.Cancellable cancellable = null)Similar to [gio.file.File.queryInfo], but obtains information about the filesystem the file is on, rather than the file itself. For instance the amount of space available and the type of the filesystem.
The attributes value is a string that specifies the attributes that should be gathered. It is not an error if it's not possible to read a particular requested attribute from a file - it just won't be set. attributes should be a comma-separated list of attributes or attribute wildcards. The wildcard "*" means all attributes, and a wildcard like "filesystem::*" means all attributes in the filesystem namespace. The standard namespace for filesystem attributes is "filesystem". Common attributes of interest are [gio.types.FILE_ATTRIBUTE_FILESYSTEM_SIZE] (the total size of the filesystem in bytes), [gio.types.FILE_ATTRIBUTE_FILESYSTEM_FREE] (number of bytes available), and [gio.types.FILE_ATTRIBUTE_FILESYSTEM_TYPE] (type of the filesystem).
If cancellable is not null, then the operation can be cancelled by triggering the cancellable object from another thread. If the operation was cancelled, the error [gio.types.IOErrorEnum.Cancelled] will be returned.
If the file does not exist, the [gio.types.IOErrorEnum.NotFound] error will be returned. Other errors are possible too, and depend on what kind of filesystem the file is on.
Parameters
attributes | an attribute query string |
cancellable | optional #GCancellable object, null to ignore |