Difficulty: Medium
Correct Answer: All of the above
Explanation:
Introduction / Context:
The MS-DOS COPY command is a versatile tool for file operations. While DISKCOPY clones entire disks, COPY focuses on files and can operate across drives, directories, and even concatenate files. Understanding these capabilities prevents misuse and streamlines maintenance tasks.
Given Data / Assumptions:
Concept / Approach:
COPY supports copying from one drive to another (e.g., COPY A:FILE.TXT B:), copying multiple files (wildcards), and concatenating files (e.g., COPY FILE1+FILE2 OUTPUT.TXT). It cannot create a sector-by-sector disk copy—that is DISKCOPY’s job—but it can certainly copy files between floppy disks if drives and paths are specified correctly.
Step-by-Step Solution:
Verification / Alternative check:
Test with simple text files and different drives; observe successful copies and concatenations. Use DIR to verify results.
Why Other Options Are Wrong:
Each single option is incomplete; COPY indeed supports all listed operations. “None” is incorrect.
Common Pitfalls:
Confusing COPY with DISKCOPY; forgetting to quote or escape special characters in filenames where required; overwriting files unintentionally without /-Y prompts in later variants.
Final Answer:
All of the above
Discussion & Comments