lyx_mirror/src/support/rename.C
Lars Gullik Bjønnes b049f3997a Make it clearer where include files are comming from.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9197 a592a061-630c-0410-9148-cb99ea01b6c8
2004-11-07 13:22:51 +00:00

34 lines
572 B
C

/**
* \file rename.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bjønnes
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "support/lyxlib.h"
#include <cstdio>
using std::string;
bool lyx::support::rename(string const & from, string const & to)
{
#ifdef __EMX__
unlink(to);
#endif
if (::rename(from.c_str(), to.c_str()) == -1)
if (copy(from, to)) {
unlink(from);
return true;
} else
return false;
return true;
}