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-new-folder-desktop-3 | |
| ## Overview | |
| Create a named folder on the desktop from a shell. Use this as the terminal route to the | |
| same end state: the desktop is an ordinary directory under the user's profile, so one | |
| create-directory command is the whole job and no window needs focus. The recorded trace | |
| opens a shell, creates `Desktop\Archive`, and closes the shell with `exit`. | |
| ## Prerequisites | |
| - A desktop environment with a file manager, or a shell. | |
| - A destination that exists and is writable, and that is the active target when the | |
| creation command is issued. The keyboard route creates the folder inside whatever | |
| container currently has focus, which is not always the one on screen. | |
| - The folder's name decided in advance, including capitalisation. | |
| - No existing folder of that name at the destination. Creating over one is refused by the | |
| shell and quietly turned into a differently-named folder by the file manager. | |
| - For the desktop specifically: the desktop reachable as a container. It behaves as a | |
| folder for this purpose, but only when no window is in front of it holding focus. | |
| ## Steps | |
| ### Step 1 — Left-click at (268, 1060) | |
| The task is to create a folder on the Desktop and name it `Archive`, which is a single directory-creation command, so the first move is to open a shell. Move the cursor and Left-click the PowerShell icon in the taskbar. | |
|  | |
| ### Step 2 — Type: New-Item -ItemType Directory -Path $env:USERPROFILE\Desktop\Archive | |
| Type a `New-Item` command to create the folder. The Desktop is an ordinary directory inside the user's profile, so creating a directory there is what makes a folder appear on the desktop — no Explorer involvement is needed. `-ItemType Directory` is required because the same command creates files as well, and the type is what distinguishes them. | |
|  | |
| ### Step 3 — Press: Enter | |
| After typing the command Press Enter to create the folder. | |
|  | |
| ### Step 4 — Type: exit | |
| Type `exit` to close the shell. | |
|  | |
| ### Step 5 — Press: Enter | |
| After typing the `exit` Press Enter to run it and close the window. | |
|  | |
| ## Notes & Edge Cases | |
| 1. The desktop is a directory. Treating it as a path rather than as a surface is what makes this route immune to the focus problem the keyboard route has — nothing has to be in front and no window has to exist. | |
| 2. The item type is what decides what gets made. The same command creates a file when told File, and a folder with a file-shaped name is close enough in a listing to be missed. | |
| 3. Creating a directory whose name is already taken is an error rather than a silent rename, and that is the useful behaviour. Read the error instead of suppressing it with a flag that ignores collisions. | |
| 4. The command creates one level only. A nested path needs the option that creates parents, which also stops it complaining about a name that already exists — and in doing so hides a collision at the final level too. | |
| 5. The desktop's directory name is not always the English word. It is localised on some systems and can be relocated, so resolve the path rather than assuming it where that is possible. | |
| 6. The new folder may not be drawn immediately. The file manager refreshes the desktop on its own schedule, so the folder exists on disk before it appears — confirm from the filesystem rather than from the screen. | |
| 7. The environment variable in the path is expanded by the shell, so the same string handed to something that is not a shell leaves the literal text unresolved. | |
| 8. The prompt returning is not confirmation that anything was created. Verify the directory exists before treating the task as done. | |