Compared to file.rename file_move()
always fails if it is unable to move
a file, rather than signaling a Warning and returning an error code.
Examples
file_create("foo")
file_move("foo", "bar")
file_exists(c("foo", "bar"))
#> foo bar
#> FALSE TRUE
file_delete("bar")