libcasio/lib/fs/makedir.c

80 lines
2.3 KiB
C

/* ****************************************************************************
* fs/makedir.c -- make a directory in a libcasio filesystem.
* Copyright (C) 2017 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr>
*
* This file is part of libcasio.
* libcasio is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 3.0 of the License,
* or (at your option) any later version.
*
* libcasio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with libcasio; if not, see <http://www.gnu.org/licenses/>.
* ************************************************************************* */
#include "fs.h"
/**
* casio_makedir:
* Make a directory using an abstract path.
*
* @arg fs the filesystem.
* @arg path the abstract path.
* @return the error code (0 if ok).
*/
int CASIO_EXPORT casio_makedir(casio_fs_t *fs, casio_path_t *path)
{
casio_fs_make_t *mk;
int err; void *nat = NULL;
casio_stat_t st;
/* Get the callback. */
mk = fs->casio_fs_funcs.casio_fsfuncs_make;
if (!mk) return (casio_error_op);
/* Make the native path. */
err = casio_make_native_path(fs, &nat, path);
if (err) return (err);
/* Prepare the stat. */
st.casio_stat_flags = 0;
st.casio_stat_type = CASIO_STAT_TYPE_DIR;
/* Make the directory. */
err = (*mk)(fs->casio_fs_cookie, path, &st);
casio_free_native_path(fs, nat);
return (err);
}
/**
* casio_makedir_nat:
* Make a directory using a native path.
*
* @arg fs the filesystem.
* @arg path the native path.
* @return the error code (0 if ok).
*/
int CASIO_EXPORT casio_makedir_nat(casio_fs_t *fs, void *path)
{
casio_fs_make_t *mk;
int err; casio_stat_t st;
/* Get the callback. */
mk = fs->casio_fs_funcs.casio_fsfuncs_make;
if (!mk) return (casio_error_op);
/* Prepare the stat. */
st.casio_stat_flags = 0;
st.casio_stat_type = CASIO_STAT_TYPE_DIR;
/* Make the directory. */
err = (*mk)(fs->casio_fs_cookie, path, &st);
return (err);
}