2002-04-30 08:00:48 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
2011-07-27 07:17:02 -07:00
|
|
|
/* OCaml */
|
2002-04-30 08:00:48 -07:00
|
|
|
/* */
|
|
|
|
/* Contributed by Tracy Camp, PolyServe Inc., <campt@polyserve.com> */
|
|
|
|
/* */
|
|
|
|
/* Copyright 2002 Institut National de Recherche en Informatique et */
|
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../../LICENSE. */
|
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2014-12-27 06:41:49 -08:00
|
|
|
#include <caml/mlvalues.h>
|
2002-04-30 08:00:48 -07:00
|
|
|
#include "unixsupport.h"
|
|
|
|
|
|
|
|
CAMLprim value unix_rename(value path1, value path2)
|
|
|
|
{
|
2004-07-13 05:25:21 -07:00
|
|
|
static int supports_MoveFileEx = -1; /* don't know yet */
|
|
|
|
BOOL ok;
|
|
|
|
|
|
|
|
if (supports_MoveFileEx < 0) {
|
|
|
|
OSVERSIONINFO VersionInfo;
|
|
|
|
VersionInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
|
|
|
|
supports_MoveFileEx =
|
|
|
|
(GetVersionEx(&VersionInfo) != 0)
|
|
|
|
&& (VersionInfo.dwPlatformId == VER_PLATFORM_WIN32_NT);
|
|
|
|
}
|
|
|
|
if (supports_MoveFileEx > 0)
|
|
|
|
ok = MoveFileEx(String_val(path1), String_val(path2),
|
2010-01-22 04:48:24 -08:00
|
|
|
MOVEFILE_REPLACE_EXISTING | MOVEFILE_WRITE_THROUGH |
|
|
|
|
MOVEFILE_COPY_ALLOWED);
|
2004-07-13 05:25:21 -07:00
|
|
|
else
|
|
|
|
ok = MoveFile(String_val(path1), String_val(path2));
|
|
|
|
if (! ok) {
|
2002-04-30 08:00:48 -07:00
|
|
|
win32_maperr(GetLastError());
|
|
|
|
uerror("rename", path1);
|
2010-01-22 04:48:24 -08:00
|
|
|
}
|
2002-04-30 08:00:48 -07:00
|
|
|
return Val_unit;
|
|
|
|
}
|