Man page - gfs_mkdir(3)
Packages contas this manual
- gfs_pio_create(3)
- gfarm_initialize(3)
- gfs_acl_init(3)
- gfs_acl_from_xattr_value(3)
- gfs_acl_dup(3)
- gfs_unlink(3)
- gfs_acl_get_entry(3)
- gfs_acl_delete_entry(3)
- gfs_pio_sendfile(3)
- gfs_pio_seek(3)
- gfs_acl_delete_perm(3)
- gfs_acl_sort(3)
- gfs_acl_equiv_mode(3)
- gfs_acl_to_text(3)
- gfs_pio_recvfile(3)
- gfs_acl_valid(3)
- gfs_mkdir(3)
- gfs_acl_free(3)
- gfs_acl_get_perm(3)
- gfs_acl_to_xattr_value(3)
- gfs_acl_add_perm(3)
- gfarm(3)
- gfs_acl_check(3)
- gfarm_terminate(3)
- gfs_pio_read(3)
- gfs_pio_sync(3)
- gfs_acl_delete_def_file(3)
- gfs_pio_write(3)
- gfs_acl_get_tag_type(3)
- gfs_acl_set_permset(3)
- gfs_pio_open(3)
- gfs_stat_free(3)
- gfs_acl_set_tag_type(3)
- gfs_pio_close(3)
- gfs_rmdir(3)
- gfs_acl_calc_mask(3)
- gfs_pio_flush(3)
- gfs_acl_set_qualifier(3)
- gfs_acl_from_mode(3)
- gfs_acl_from_text(3)
- gfs_stat(3)
- gfs_acl_get_qualifier(3)
- gfs_acl_entries(3)
- gfs_acl_set_file(3)
- gfs_acl_error(3)
- gfs_acl_to_any_text(3)
- gfs_acl_get_permset(3)
- gfs_pio_datasync(3)
- gfs_acl_cmp(3)
- gfs_acl_clear_perms(3)
- gfs_acl_get_file(3)
- gfs_acl_from_text_with_default(3)
- gfs_acl_create_entry(3)
Package: libgfarm-dev
apt-get install libgfarm-dev
apt-get install libgfarm-dev
Manuals in package:
Documentations in package:
Available languages:
en jaManual
| GFS_MKDIR(3) | Gfarm | GFS_MKDIR(3) |
NAME
gfs_mkdir - create a directory
SYNOPSIS
#include <gfarm/gfarm.h>
gfarm_error_t gfs_mkdir(const char * gfarm_url, gfarm_mode_t mode);
DESCRIPTION
gfs_mkdir() attempts to create a directory named gfarm_url.
mode speficies the permissions to use. It is modified by the process's umask in the usual way: the permissions of the created file are (mode & ~umask).
RETURN VALUES
GFARM_ERR_NO_ERROR
The function terminated successfully.
GFARM_ERR_NO_MEMORY
Insufficient memory was available.
GFARM_ERR_ALREADY_EXISTS
gfarm_url already exists (not necessarily as a
directory). This includes the case where gfarm_url is a symbolic link,
dangling or not.
GFARM_ERR_NO_SUCH_OBJECT
The parent directory of gfarm_url does not
exist.
GFARM_ERR_NOT_A_DIRECTORY
A component of the path prefix is not a directory.
Others
An error except the above occurred. The reason is shown
by gfarm_error_string(3).
| 23 Jun 2019 | Gfarm |