File mover
Last updated
Last updated
[io/file/File mover]
Moves a file specified by the path in source
to the path in destination
.
Example (success):
"home/user1/dir1/foo.txt"@0 received on source
"home/user1/dir2/bar.txt"@0 received on destination
{
source: "/home/user1/dir1/foo.txt",
destination: "home/user1/dir2/bar.txt"
}@ sent on moved
Example (failure):
"home/user1/dir1/foo.txt"@0 received on source
"home/user1/dir2/bar.txt"@0 received on destination
{
source: "/home/user1/dir1/foo.txt",
destination: "home/user1/dir2/bar.txt"
}@0 sent on bounced
{
"error": "Error: ENOENT: no such file or directory, rename 'home/user1/dir1/foo.txt' -> 'home/user1/dir2/bar.txt'"
}@0 sent on error
Keywords: mv, move
source: string
Receives the path of the source file to move. Example: "/home/user1/dir1/foo.txt" (To keep the application portable use "/" as path separator.)
destination: string
Receives the path of the desired target file. Example: "/home/user1/dir2/bar.txt" (To keep the application portable use "/" as path separator.)
bounced: {"source": string, "destination": string}
Sends synced parameters if operation has failed. Example: { source: "/home/user1/dir1/foo.txt", destination: "/home/user1/dir2/bar.txt" }
moved: {"source": string, "destination": string}
Sends synced parameters if operation has succeeded. Example: { source: "/home/user1/dir1/foo.txt", destination: "/home/user1/dir2/bar.txt" }
error: {"error": string}
Sends error information if the operation has failed. Example: { "error": "Error: ENOENT: no such file or directory, rename '/home/user1/dir1/foo.txt' -> '/home/user1/dir2/bar.txt'" }