tensor-0.1.0
Main Page
Related Pages
Modules
Namespaces
Data Structures
All
Data Structures
Namespaces
Functions
Variables
Typedefs
Enumerations
Enumerator
Groups
Pages
rename_file.cc
1
// -*- mode: c++; fill-column: 80; c-basic-offset: 2; indent-tabs-mode: nil -*-
2
/*
3
Copyright (c) 2013 Juan Jose Garcia Ripoll
4
5
Tensor is free software; you can redistribute it and/or modify it
6
under the terms of the GNU Library General Public License as published
7
by the Free Software Foundation; either version 2 of the License, or
8
(at your option) any later version.
9
10
This program is distributed in the hope that it will be useful,
11
but WITHOUT ANY WARRANTY; without even the implied warranty of
12
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
GNU Library General Public License for more details.
14
15
You should have received a copy of the GNU General Public License along
16
with this program; if not, write to the Free Software Foundation, Inc.,
17
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
*/
19
20
#include <stdio.h>
21
#include <tensor/sdf.h>
22
23
namespace
sdf {
24
25
bool
rename_file(
const
std::string &orig,
const
std::string &dest,
bool
overwrite)
26
{
27
if
(file_exists(dest)) {
28
if
(!overwrite || !delete_file(dest)) {
29
std::cerr <<
"Unable to move file to destination "
<< dest
30
<<
" because destination cannot be deleted."
<< std::endl;
31
abort();
32
}
33
}
34
if
(!file_exists(orig)) {
35
std::cerr <<
"In rename_file(), original file "
<< dest
36
<<
" does not exist"
<< std::endl;
37
abort();
38
}
39
return
rename(orig.c_str(), dest.c_str()) == 0;
40
}
41
42
}
43
44
src
sdf
rename_file.cc
Generated on Tue Jun 10 2014 10:24:16 for tensor-0.1.0 by
1.8.6