summaryrefslogtreecommitdiffstats
path: root/otherlibs/win32unix/rename.c
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2002-04-30 15:00:48 +0000
committerXavier Leroy <xavier.leroy@inria.fr>2002-04-30 15:00:48 +0000
commitc98047f62764eab650f7495e50d0e1d63d53ac88 (patch)
tree3f26e1884beacb4fe6042fe60ca2bd7e093c5f79 /otherlibs/win32unix/rename.c
parent044ac150e8b5763047b77757e9144a920fb49a42 (diff)
Meilleure distinction handle/socket. Ajout lockf. Revu rename.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4765 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/rename.c')
-rw-r--r--otherlibs/win32unix/rename.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/otherlibs/win32unix/rename.c b/otherlibs/win32unix/rename.c
new file mode 100644
index 000000000..51139485b
--- /dev/null
+++ b/otherlibs/win32unix/rename.c
@@ -0,0 +1,29 @@
+/***********************************************************************/
+/* */
+/* Objective Caml */
+/* */
+/* 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. */
+/* */
+/***********************************************************************/
+
+/* $Id$ */
+
+#include <stdio.h>
+#include <mlvalues.h>
+#include "unixsupport.h"
+
+CAMLprim value unix_rename(value path1, value path2)
+{
+ if (MoveFileEx(String_val(path1), String_val(path2),
+ MOVEFILE_REPLACE_EXISTING | MOVEFILE_WRITE_THROUGH |
+ MOVEFILE_COPY_ALLOWED) == 0) {
+ win32_maperr(GetLastError());
+ uerror("rename", path1);
+ }
+ return Val_unit;
+}