GVfs

GVfs

Synopsis




                    GVfs;
const char*         g_vfs_get_name                      (GVfs *vfs);
int                 g_vfs_get_priority                  (GVfs *vfs);
GFile*              g_vfs_get_file_for_path             (GVfs *vfs,
                                                         const char *path);
GFile*              g_vfs_get_file_for_uri              (GVfs *vfs,
                                                         const char *uri);
GFile*              g_vfs_parse_name                    (GVfs *vfs,
                                                         const char *parse_name);
GVfs*               g_vfs_get_default                   (void);
GVfs*               g_vfs_get_local                     (void);


Object Hierarchy


  GObject
   +----GVfs

Description

Details

GVfs

typedef struct _GVfs GVfs;


g_vfs_get_name ()

const char*         g_vfs_get_name                      (GVfs *vfs);

vfs :

an input GVfs.

Returns :

the name of vfs.

g_vfs_get_priority ()

int                 g_vfs_get_priority                  (GVfs *vfs);

vfs :

an input GVfs.

Returns :

the priority of vfs.

g_vfs_get_file_for_path ()

GFile*              g_vfs_get_file_for_path             (GVfs *vfs,
                                                         const char *path);

vfs :

an input GVfs.

path :

a string containing a VFS path.

Returns :

a GFile with the given path, or NULL on failure.

g_vfs_get_file_for_uri ()

GFile*              g_vfs_get_file_for_uri              (GVfs *vfs,
                                                         const char *uri);

vfs :

an input GVfs.

uri :

an input string containing a URI path.

Returns :

a GFile with the given uri, or NULL on failure.

g_vfs_parse_name ()

GFile*              g_vfs_parse_name                    (GVfs *vfs,
                                                         const char *parse_name);

vfs :

parse_name :

Returns :

a GFile for the given parse_name.

g_vfs_get_default ()

GVfs*               g_vfs_get_default                   (void);

Returns :

the default GVfs for the system.

g_vfs_get_local ()

GVfs*               g_vfs_get_local                     (void);

Returns :

the local GVfs for the system.