|
GRASS 8 Programmer's Manual 8.6.0dev(2026)-f6f2c534ea
|
GIS Library - Rename file functions. More...
#include <stdio.h>#include <stdlib.h>#include <string.h>#include <unistd.h>#include <grass/gis.h>
Go to the source code of this file.
Functions | |
| int | G_rename_file (const char *oldname, const char *newname) |
| Rename a file or a directory in the filesystem. | |
| int | G_rename (const char *element, const char *oldname, const char *newname) |
| Rename a database file. | |
GIS Library - Rename file functions.
(C) 2001-2015 by the GRASS Development Team
This program is free software under the GNU General Public License (>=v2). Read the file COPYING that comes with GRASS for details.
Definition in file rename.c.
Rename a database file.
The file or directory oldname under the database element directory in the current mapset is renamed to newname.
| element | element name |
| oldname | current name |
| newname | new name |
Definition at line 69 of file rename.c.
References access, G_file_name(), G_mapset(), G_name_is_fully_qualified(), G_rename_file(), GMAPSET_MAX, GNAME_MAX, and GPATH_MAX.
Referenced by M_do_rename(), and Vect_rename().
Rename a file or a directory in the filesystem.
The file or directory oldname is renamed to newname.
| oldname | current name |
| newname | new name |
Definition at line 31 of file rename.c.
References G_copy_file().
Referenced by G_rename(), I_signatures_rename(), PS_Graph_close(), and PS_Graph_set().