gio-0.13.3.1: Binding to GIO

Maintainergtk2hs-devel@lists.sourceforge.net Stability : alpha Portability : portable (depends on GHC)
Safe HaskellNone
LanguageHaskell98

System.GIO.File.FileAttribute

Contents

Description

 
Synopsis

Details

File attributes in GIO consist of a list of key-value pairs.

Keys are strings that contain a key namespace and a key name, separated by a colon, e.g. "namespace:keyname". Namespaces are included to sort key-value pairs by namespaces for relevance. Keys can be retrived using wildcards, e.g. "standard::*" will return all of the keys in the "standard" namespace.

Values are stored within the list in FileAttributeValue structures. Values can store different types, listed in the enum FileAttributeType. Upon creation of a FileAttributeValue, the type will be set to FileAttributeTypeInvalid.

The list of possible attributes for a filesystem (pointed to by a File) is availible as a FileAttributeInfoList. This list is queryable by key names as indicated earlier.

Classes that implement FileIface will create a FileAttributeInfoList and install default keys and values for their given file system, architecture, and other possible implementation details (e.g., on a UNIX system, a file attribute key will be registered for the user id for a given file).

Types

data FileAttributeType #

Instances
Bounded FileAttributeType # 
Instance details

Defined in System.GIO.File.FileAttribute

Enum FileAttributeType # 
Instance details

Defined in System.GIO.File.FileAttribute

Eq FileAttributeType # 
Instance details

Defined in System.GIO.File.FileAttribute

Ord FileAttributeType # 
Instance details

Defined in System.GIO.File.FileAttribute

Read FileAttributeType # 
Instance details

Defined in System.GIO.File.FileAttribute

Show FileAttributeType # 
Instance details

Defined in System.GIO.File.FileAttribute

Enums

data FileAttributeInfoFlags #

Flags specifying the behaviour of an attribute.

Instances
Bounded FileAttributeInfoFlags # 
Instance details

Defined in System.GIO.Enums

Enum FileAttributeInfoFlags #

AskPasswordFlags are used to request specific information from the user, or to notify the user of their choices in an authentication situation.

Instance details

Defined in System.GIO.Enums

Eq FileAttributeInfoFlags # 
Instance details

Defined in System.GIO.Enums

Ord FileAttributeInfoFlags # 
Instance details

Defined in System.GIO.Enums

Read FileAttributeInfoFlags # 
Instance details

Defined in System.GIO.Enums

Show FileAttributeInfoFlags # 
Instance details

Defined in System.GIO.Enums

Flags FileAttributeInfoFlags # 
Instance details

Defined in System.GIO.Enums

Methods