Difficulty: Easy
Correct Answer: COPY A:.TXT
Explanation:
Introduction / Context:
Copying groups of files in DOS relies on wildcard patterns and correct source/destination ordering. A common task is moving all text files from a floppy disk (drive A) to the current working directory on the hard disk.
Given Data / Assumptions:
Concept / Approach:
DOS COPY syntax is COPY source destination
. When the destination is omitted, COPY assumes the current directory on the current drive. To match all text files on A:, combine the drive specifier and wildcard: A:.TXT
. Case is not significant in DOS file systems.
Step-by-Step Solution:
.
.Run the command: COPY A:.TXTVerify copies with DIR to confirm successful transfer.
Verification / Alternative check:
Test by creating sample files on A: and executing the command; observe that all matching files appear in the current directory. DOS usage guides show identical syntax examples.
Why Other Options Are Wrong:
Common Pitfalls:
Leaving out the drive specifier (which changes the source); forgetting wildcard behavior; unintentionally overwriting files with the same names in the destination.
Final Answer:
COPY A:.TXT
Discussion & Comments