Datasets:
Modalities:
Image
Formats:
imagefolder
Size:
1K - 10K
Tags:
Machine Learning
Artificial Intelligence
Computer Use Agents
Reinforcement Learning
Vision-Language Models
GUI Agents
License:
| # Memory: explorer-copy-to-folder | |
| ## Overview | |
| Copy a file into a subfolder through the file manager's context menu, leaving the original | |
| in place. Use this when a file has to be placed into another folder by pointing and a copy | |
| — not a move — is what is wanted. The route copies the file from its context menu, opens | |
| the destination folder, and pastes into empty space inside it. The recorded trace leaves | |
| `report.pdf` in both the destination and the source folder. | |
| ## Prerequisites | |
| - A desktop environment with a file manager, or a shell. | |
| - A file to copy and a destination folder, both existing before the task starts and both | |
| identifiable by name. | |
| - Write access to the destination folder, and read access to the file. | |
| - Enough free space at the destination for a second copy. | |
| - Clarity that the result is a copy, not a move. The original must still be in place when | |
| the task finishes; a route that leaves the source folder empty has done a different job. | |
| - No file of the same name already in the destination. Both routes overwrite — the shell | |
| without asking, the file manager after a confirmation that is easy to accept | |
| reflexively. | |
| ## Steps | |
| ### Step 1 — Right-click at (250, 386) | |
| The task is to place a copy of `report.pdf` in another folder while leaving the original where it is. Move the cursor and Right-click **`report.pdf`** in `corpus-seed` to select it and open its context menu. | |
|  | |
| ### Step 2 — Move-cursor at (298, 642) | |
| Move the cursor onto the **`Copy`** row first. Hovering before clicking is what makes the click land reliably here, and it leaves the target visibly highlighted in the next frame. | |
|  | |
| ### Step 3 — Left-click at (298, 642) | |
| Move the cursor and Left-click **`Copy`**. The distinction from `Cut` 21 px above is the whole task: `Copy` leaves the original in `corpus-seed`, which is what "copy into" requires, whereas `Cut` would remove it. | |
|  | |
| ### Step 4 — Double-click at (212, 133) | |
| Move the cursor and Double-click **`dest`** to open the destination folder. It is the top row of the listing — folders sort above files and `dest` is first alphabetically among them. | |
|  | |
| ### Step 5 — Right-click at (900, 600) | |
| `dest\` is empty, so there is nothing to right-click on. Move the cursor and Right-click blank space in the file pane to open the folder's own context menu, which is where `Paste` lives. | |
|  | |
| ### Step 6 — Move-cursor at (948, 739) | |
| Move the cursor onto the **`Paste`** row before clicking. | |
|  | |
| ### Step 7 — Left-click at (948, 739) | |
| Move the cursor and Left-click **`Paste`**. It is black rather than dimmed, confirming the clipboard still holds the file. `report.pdf` now exists in both `corpus-seed` and `corpus-seed\dest\`, which is the end state a copy should leave. | |
|  | |
| ## Notes & Edge Cases | |
| 1. Copying a file puts a reference on the clipboard rather than the bytes, so nothing exists at the destination until the paste. An interruption between the two halves leaves nothing behind. | |
| 2. The first right-click is on the file and the second on empty space inside the destination. Each menu holds only half of what the task needs, so what is under the pointer decides whether the wanted entry exists at all. | |
| 3. The paste lands in whatever folder the window is showing, not in whatever is selected. Opening the destination is therefore the step that decides the outcome — if it silently failed, the copy lands beside the original and looks like success. | |
| 4. Verify the original is still in place. Copy and move produce identical-looking destinations, and only the source folder distinguishes them. | |
| 5. A dimmed paste entry means the clipboard is empty and the first half did not land. It is a report, not a rendering quirk. | |
| 6. The clipboard is shared with every other running application, so anything that copies between the two halves substitutes a different file with no error. | |
| 7. Move to the target and click as separate actions, and prefer the keyboard equivalents of both halves when the selection is already correct. | |