Difficulty: Easy
Correct Answer: COPY *.TXT A:
Explanation:
Introduction / Context:
Wildcards provide fast, flexible file operations in DOS. When moving groups of files to removable media, the COPY command combined with the asterisk pattern simplifies backups and transfers. Using the correct source–destination order prevents overwriting the wrong location.
Given Data / Assumptions:
Concept / Approach:
The syntax is COPY source destination. A wildcard pattern like *.TXT means “all files ending in .TXT” in the current directory. The destination is specified as a drive or path. The command does not delete originals; it simply duplicates them to the target.
Step-by-Step Solution:
Verification / Alternative check:
Create a new text file locally and repeat the COPY command; confirm it appears on A:. This validates the pattern and the source–destination order.
Why Other Options Are Wrong:
a: Reverses source and destination; it attempts to copy from A: to the current directory.
c: Copies to C:, not A:.
d: Copies multiple files into a single file named ALL.TXT, which is not the goal.
e: Not applicable because option b is correct.
Common Pitfalls:
Forgetting to include the colon after drive letters; insufficient disk space on A:; unintentionally overwriting existing files on the destination without confirmation.
Final Answer:
COPY *.TXT A:
Discussion & Comments