/* NETWOX Network toolbox Copyright(c) 1999-2006 Laurent Constantin ----- Main server : http://www.laurentconstantin.com/ Backup servers : http://go.to/laurentconstantin/ http://laurentconstantin.est-la.com/ http://laurentconstantin.free.fr/ http://membres.lycos.fr/lauconstantin/ [my current email address is on the web servers] ----- This file is part of Netwox. Netwox is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. Netwox 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 General Public License for more details (http://www.gnu.org/). ------------------------------------------------------------------------ */ /*-------------------------------------------------------------*/ #include "../netwox.h" /*-------------------------------------------------------------*/ netwib_conststring t000204_description[] = { "This tool is a simple SMB/CIFS client renaming a file.", "", NETWOX_DESC_client, "", NETWOX_DESC_smbcli_share, NETWOX_DESC_toolpriv_none, NULL }; netwox_toolarg t000204_args[] = { NETWOX_SMBCLI_TOOLARG_SHARE, NETWOX_TOOLARG_REQ_BUF_FILE('f', "oldfilename", "old file name", NULL), NETWOX_TOOLARG_REQ_BUF_FILE('F', "newfilename", "new file name", NULL), NETWOX_TOOLARG_END }; netwox_tooltreenodetype t000204_nodes[] = { NETWOX_TOOLTREENODETYPE_CLIENT_TCP_SMB, NETWOX_TOOLTREENODETYPE_END }; netwox_tool_info t000204_info = { "SMB/CIFS client: rename a file", t000204_description, "smbclient", t000204_args, t000204_nodes, }; /*-------------------------------------------------------------*/ netwib_err t000204_core(int argc, char *argv[]) { netwox_arg *parg; netwox_smbcli smbcli; netwib_buf oldfilename, newfilename; /* obtain parameters */ netwib_er(netwox_arg_init(argc, argv, &t000204_info, &parg)); netwib_er(netwox_smbcli_init_share(parg, &smbcli)); netwib_er(netwox_arg_buf(parg, 'f', &oldfilename)); netwib_er(netwox_arg_buf(parg, 'F', &newfilename)); /* SMB */ netwib_er(netwox_smbcli_begin(&smbcli)); netwib_er(netwox_smbcli_file_rename(&smbcli, &oldfilename, &newfilename)); netwib_er(netwox_smbcli_end(&smbcli)); /* close */ netwib_er(netwox_smbcli_close(&smbcli)); netwib_er(netwox_arg_close(&parg)); return(NETWIB_ERR_OK); }