File Management

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/20

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:33 PM on 5/1/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

21 Terms

1
New cards

What do the move command and copy command allow you to do?

transfer files within a single directory

2
New cards

What syntax do the move and copy commands use?

command Source Destination

3
New cards

What does Source specify in the move/copy syntax?

the drive, path, and file name to be moved or copied

4
New cards

What does Destination specify in the move/copy syntax?

the drive and path for the new location

5
New cards

What does robocopy stand for?

robust copy

6
New cards

Which command does Microsoft recommend over xcopy?

robocopy

7
New cards

Why is robocopy recommended over xcopy?

better handling of long file names and NTFS attributes

8
New cards

What does /xf do in robocopy?

excludes files that match the specified names or paths

9
New cards

What does /xd do in robocopy?

excludes directories that match the specified names or paths

10
New cards

What does /S do in robocopy?

copies subdirectories, excluding empty ones

11
New cards

What does /E do in robocopy?

copies all subdirectories, including empty ones

12
New cards

What does /L do in robocopy?

lists the files and directories that would be copied, without actually copying them

13
New cards

What should you check for additional robocopy switches and syntax?

the command help

14
New cards

Which robocopy switch moves files?

/mov

15
New cards

Which commands create a directory?

md or mkdir

16
New cards

What does md Data do?

create a directory named Data in the current directory

17
New cards

How do you create a directory named Docs within Data on the A drive while the current path is C:?

md A:\Data\Docs

18
New cards

Which characters cannot be included in folder and file names?

\ / : * ? " < > |

19
New cards

Which commands remove an empty directory?

rd Directory or rmdir Directory

20
New cards

Which switch removes files or subdirectories when deleting a directory?

/s

21
New cards

Which switch suppresses confirmation messages for quiet mode?

/q