Definition
/**
* Move a file from one path to another, across any filesystems mounted in the table.
* Intra-filesystem moves delegate to `Filesystem::mv` for server-side optimizations;
* cross-filesystem moves stream-copy then remove the source (non-atomic).
*/
file_move(FilesystemTable $table, ?OperationOptions $options) : Move