postgresql/src/port/copydir.c

95 lines
2.2 KiB
C
Raw Normal View History

2003-11-12 00:52:45 +01:00
/*-------------------------------------------------------------------------
*
* copydir.c
* copies a directory
*
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
2003-11-12 00:52:45 +01:00
* Portions Copyright (c) 1994, Regents of the University of California
*
* While "xcopy /e /i /q" works fine for copying directories, on Windows XP
* it requires a Window handle which prevents it from working when invoked
* as a service.
*
2003-11-12 00:52:45 +01:00
* IDENTIFICATION
* $PostgreSQL: pgsql/src/port/copydir.c,v 1.11 2005/03/24 02:11:20 tgl Exp $
2003-11-12 00:52:45 +01:00
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "storage/fd.h"
2003-08-04 02:43:34 +02:00
#undef mkdir /* no reason to use that macro because we
* ignore the 2nd arg */
/*
* copydir: copy a directory (we only need to go one level deep)
*
* Return 0 on success, nonzero on failure.
*
* NB: do not elog(ERROR) on failure. Return to caller so it can try to
* clean up.
*/
int
2003-08-04 02:43:34 +02:00
copydir(char *fromdir, char *todir)
{
DIR *xldir;
struct dirent *xlde;
char fromfl[MAXPGPATH];
char tofl[MAXPGPATH];
if (mkdir(todir) != 0)
{
ereport(WARNING,
2003-07-27 19:10:07 +02:00
(errcode_for_file_access(),
errmsg("could not create directory \"%s\": %m", todir)));
return -1;
}
xldir = AllocateDir(fromdir);
if (xldir == NULL)
{
ereport(WARNING,
2003-07-27 19:10:07 +02:00
(errcode_for_file_access(),
errmsg("could not open directory \"%s\": %m", fromdir)));
return -1;
}
errno = 0;
while ((xlde = readdir(xldir)) != NULL)
{
2003-08-04 02:43:34 +02:00
snprintf(fromfl, MAXPGPATH, "%s/%s", fromdir, xlde->d_name);
snprintf(tofl, MAXPGPATH, "%s/%s", todir, xlde->d_name);
if (CopyFile(fromfl, tofl, TRUE) < 0)
{
ereport(WARNING,
2003-08-04 02:43:34 +02:00
(errcode_for_file_access(),
errmsg("could not copy file \"%s\": %m", fromfl)));
FreeDir(xldir);
return -1;
2003-08-04 02:43:34 +02:00
}
errno = 0;
}
#ifdef WIN32
/*
* This fix is in mingw cvs (runtime/mingwex/dirent.c rev 1.4), but
* not in released version
*/
if (GetLastError() == ERROR_NO_MORE_FILES)
errno = 0;
#endif
if (errno)
{
ereport(WARNING,
(errcode_for_file_access(),
errmsg("could not read directory \"%s\": %m", fromdir)));
FreeDir(xldir);
return -1;
}
FreeDir(xldir);
return 0;
}