diff --git a/source/vibe/core/file.d b/source/vibe/core/file.d index 83defc3..6530a1e 100644 --- a/source/vibe/core/file.d +++ b/source/vibe/core/file.d @@ -191,7 +191,7 @@ void moveFile(string from, string to, bool copy_fallback = false) try { std.file.rename(from, to); } catch (FileException e) { - std.file.copy(from, to); + copyFile(from, to); std.file.remove(from); } }