moveFile

Moves or renames a file.

  1. void moveFile(Path from, Path to, bool copy_fallback)
    @safe
    void
    moveFile
    (
    Path from
    ,
    Path to
    ,
    bool copy_fallback = false
    )
  2. void moveFile(string from, string to, bool copy_fallback)

Parameters

from Path

Path to the file/directory to move/rename.

to Path

The target path

copy_fallback bool

Determines if copy/remove should be used in case of the source and destination path pointing to different devices.

Meta