answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Which command is used to delete all files from a diskette?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you delete a folder from command prompt?

In Dos-just write (DEL Folder Name) this command will delete all the Files inside that folder,then write (RD Folder Name) This will Remove your Folder. Remember both command contain Same folder name. Which you want to Delete.(DEL)command is used to delete Files. (RD) command is used to delete Folder


What command you use to delete a file?

Del is used to delete a file in command prompt.


Unlock files in directory using dos commands?

Dos commands are used to create or delete directories. The ATTRIB Command is used for locking and unlocking of files.


How do you delete 0 byte files using DOS?

The command for deleting a file in DOS is DEL. If the file you are trying to delete is in the current directory, type DEL followed by the full filename. E.g. del file001.txt If there are multiple files, the wildcard * can be used. del file*.txt will delete all the text files that start with 'file' del file*.* will delete all the files that start with file. del *.txt will delete all the text files. del *.* will delete all the files in the current directory. It is possible to delete files in another directory by typing the full path and filename del c:\folder01\*.* will delete all the files in the directory c:\folder01\ DEL will not affect hidden files, but careless use of this command could damage your operating system so use with care.


While running DOS on a PC which command would be used to duplicate the entire diskette?

diskcopy


Which recovery console command is used to delete partitions?

Diskpart CommandThe diskpart command is a Recovery Console command used to create or delete partitions on hard drives.


Shortcut command used to delete a table column?

Delete column


Which command is used to delete the directory that is empty?

erase


Which MS-DOS command is used to delete a directory and its sub directories in one pass?

To delete directory and sub directory in single command, use "deltree" command..


What is the command is used to remove directory in Linux?

Assuming the directory is in your Home directory use: rmdir directory-name This will fail if there are files within the directory. In this case, use rm -r directory-name.


How are your pictures still on computer after downloading to flash drive?

The pics will remain on the computer if they were copied, rather than moved, onto a Flash drive. To move files, as opposed to copying, on a Mac hold down the Command key (cmd) and click and drag a file's icon. Or just delete unwanted files after they have been copied.


What is the command to delete all files in the A data folder that begin with the letter A and have the txt file extension?

Depends on the operating system...In Windows (with a command prompt open and the current directory is this data folder): del a*.txtThe del command is used to delete files and takes an argument containing the name of the file. Wildcards, such as * (denotes "any number of characters"), are used to take action on any items in the folder that meet the requirements. You can think of a*.txt as meaning "starts with an a followed by any number of characters, and ending with a period and the extension 'txt'."