Atomic Operations
By the end of this guide, you will:
-
TODO: Write learning objectives
⚠️ This page is a stub. Help us write it! See the Documentation Plan and Style Guide.
User Stories
Story 16: Move Files and Directories
As a terminal user
I want to move files to another location
So that I can reorganize my filesystem
Acceptance Criteria
-
mkey prompts for destination path -
User types destination and presses Enter
-
File/directory moved to destination
-
File list refreshes to remove moved item
-
Error shown if move fails
-
Handles cross-filesystem moves
Notes
-
Similar to copy but removes source
-
May need to fall back to copy+delete for cross-filesystem
-
Introduces atomic operation handling