From a3ce8bf787fc1abc1b7364f54fe2103e4f44d6fe Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Tue, 31 Jan 2012 07:08:41 -0700 Subject: [PATCH] doc behavior of `copy-file' and modification dates on Windows --- collects/scribblings/reference/filesystem.scrbl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/collects/scribblings/reference/filesystem.scrbl b/collects/scribblings/reference/filesystem.scrbl index a1872a1cb7..352dea31f9 100644 --- a/collects/scribblings/reference/filesystem.scrbl +++ b/collects/scribblings/reference/filesystem.scrbl @@ -367,7 +367,8 @@ Creates the file @racket[dest] as a copy of @racket[src], if and @racket[exists-ok?] is @racket[#f], the copy fails with @exnraise[exn:fail:filesystem:exists?]; otherwise, if @racket[dest] exists, its content is replaced with the content of @racket[src]. File -permissions are transferred from @racket[src] to @racket[dest]. If +permissions are transferred from @racket[src] to @racket[dest]; on Windows, +the modification time of @racket[src] is also transferred to @racket[dest]. If @racket[src] refers to a link, the target of the link is copied, rather than the link itself; if @racket[dest] refers to a link and @racket[exists-ok?] is true, the target of the link is updated.}