Basic Directory Operations
Basic Directory Operations —
Creating and removing directories.
Description
Details
gnome_vfs_make_directory ()
GnomeVFSResult gnome_vfs_make_directory (const gchar *text_uri,
guint perm);
text_uri : | URI of the directory to be created
|
perm : | Unix-style permissions for the newly created directory
|
Returns : | An integer representing the result of the operation
|
gnome_vfs_make_directory_for_uri ()
GnomeVFSResult gnome_vfs_make_directory_for_uri
(GnomeVFSURI *uri,
guint perm);
uri : | URI of the directory to be created
|
perm : | Unix-style permissions for the newly created directory
|
Returns : | An integer representing the result of the operation
|
gnome_vfs_remove_directory ()
GnomeVFSResult gnome_vfs_remove_directory (const gchar *text_uri);
text_uri : | URI of the directory to be removed
|
Returns : | An integer representing the result of the operation
|
gnome_vfs_remove_directory_from_uri ()
GnomeVFSResult gnome_vfs_remove_directory_from_uri
(GnomeVFSURI *uri);
uri : | URI of the directory to be removed
|
Returns : | An integer representing the result of the operation
|