Move/Rename
fc_moveMove or rename a file or directory by specifying source and destination paths. Handles both file moves and renames within or across directories.
Instructions
Moves or renames a file/directory.
Args:
source (string): Source path
destination (string): Destination path
Examples:
Rename: source="test.txt", destination="test_new.txt"
Move: source="C:\a\test.txt", destination="C:\b\test.txt"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| source | Yes | Source path | |
| destination | Yes | Destination path |