Difficulty: Easy
Correct Answer: UNDELETE /LIST
Explanation:
Introduction / Context:
In classic DOS, accidental deletions could sometimes be reversed using UNDELETE, provided directory entries were still available. Safely previewing recoverable files helps avoid mistakes and confirms what will be restored.
Given Data / Assumptions:
Concept / Approach:
The option /LIST
instructs UNDELETE to show candidates for recovery. Other options perform undeletes automatically or prompt per file. Using /LIST
is a safe first step, akin to a dry run.
Step-by-Step Solution:
Verification / Alternative check:
Help screens (UNDELETE /?) show /LIST
as a non-destructive listing mode in several DOS versions and add-on utilities.
Why Other Options Are Wrong:
Common Pitfalls:
Continuing to use the disk after deletion (overwrites metadata); assuming long file names are supported in pure DOS UNDELETE; forgetting that recovery success depends on directory entry preservation.
Final Answer:
UNDELETE /LIST
Discussion & Comments