cake
/
libp7
Archived
1
0
Fork 1
This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
libp7/src/storage/createdir.c

60 lines
1.9 KiB
C

/* *****************************************************************************
* storage/createdir.c -- create a directory on the calculator.
* Copyright (C) 2016-2017 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr>
*
* This file is part of libp7.
* libp7 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.
*
* libp7 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 libp7; if not, see <http://www.gnu.org/licenses/>.
* ************************************************************************** */
#include <libp7/internals.h>
/**
* p7_createdir:
* Create a distant directory.
*
* @arg handle the libp7 handle
* @arg dirname the directory name
* @arg devname the device name
* @return the error code (0 if ok)
*/
int p7_createdir(p7_handle_t *handle, const char *dirname, const char *devname)
{
int err;
/* make checks */
chk_handle(handle);
chk_active(handle);
chk_dirname(dirname);
/* send command packet */
log_info("sending command");
if ((err = p7_send_cmdfls_mkdir(handle, dirname, devname))) {
log_fatal("couldn't send command/get its response");
return (err);
} else if (response.type != p7_pt_ack && response.type != p7_pt_error) {
log_fatal("received an invalid answer");
return (p7_error_unknown);
}
/* check error */
if (response.type == p7_pt_error) switch (response.code) {
default:
log_fatal("unknown/unmanaged error");
return (p7_error_unknown);
}
/* we're done */
return (0);
}