static MateVFSResult
do_remove_directory (MateVFSMethod *method,
		     MateVFSURI *uri,
		     MateVFSContext *context)
{
	PERFORM_OPERATION (remove_directory, mate_vfs_remove_directory_from_uri_cancellable (uri, context));
}
Example #2
0
/**
 * mate_vfs_remove_directory_from_uri:
 * @uri: uri of the directory to be removed.
 * 
 * Remove @uri. @uri must be an empty directory.
 * 
 * Return value: an integer representing the result of the operation.
 */
MateVFSResult
mate_vfs_remove_directory_from_uri (MateVFSURI *uri)
{
	return mate_vfs_remove_directory_from_uri_cancellable (uri, NULL);
}