![]() |
![]() |
![]() |
MateVFS - Filesystem Abstraction library | ![]() |
---|---|---|---|---|
Top | Description |
MateVFSResult mate_vfs_make_directory (const gchar *text_uri
,guint perm
); MateVFSResult mate_vfs_make_directory_for_uri (MateVFSURI *uri
,guint perm
); MateVFSResult mate_vfs_remove_directory (const gchar *text_uri
); MateVFSResult mate_vfs_remove_directory_from_uri (MateVFSURI *uri
);
MateVFSResult mate_vfs_make_directory (const gchar *text_uri
,guint perm
);
Create text_uri
as a directory.
|
uri of the directory to be created. |
|
Unix-style permissions for the newly created directory |
Returns : |
an integer representing the result of the operation. |
MateVFSResult mate_vfs_make_directory_for_uri (MateVFSURI *uri
,guint perm
);
Create a directory at uri
. Only succeeds if a file or directory
does not already exist at uri
.
|
uri of the directory to be created. |
|
Unix-style permissions for the newly created directory. |
Returns : |
an integer representing the result of the operation. |
MateVFSResult mate_vfs_remove_directory (const gchar *text_uri
);
Remove text_uri
. text_uri
must be an empty directory.
|
path of the directory to be removed. |
Returns : |
an integer representing the result of the operation. |
MateVFSResult mate_vfs_remove_directory_from_uri (MateVFSURI *uri
);
Remove uri
. uri
must be an empty directory.
|
uri of the directory to be removed. |
Returns : |
an integer representing the result of the operation. |