Home > Common Problem > What is the function of del key?

What is the function of del key?

烟雨青岚
Release: 2020-07-14 14:43:08
Original
26526 people have browsed it

The function of the del key is to delete the selected information. The full English spelling of del is "Delete", so the DEL key is also called the "Delete key"; "del" cannot delete folders, but can only operate on files.

What is the function of del key?

DEL is the delete key. The full English spelling of DEL is Delete, so the DEL key is also called the "Delete key". Its function is generally to delete the selected information. Its position on the keyboard is as shown in the figure:

What is the function of del key?

Del command displays the following prompt:

All files in directory will be deleted!Are you sure (Y/N)?
Copy after login

Press Y then ENTER to delete all files in the current folder, or press N then ENTER to cancel deletion.

Before you use the del command with wildcard characters to delete a group of files, you can use the dir command with the same wildcard character to view a list of all file names contained in the group.

Warning: Once you delete a file from disk using del, it cannot be restored.

The del command (with various parameters) can be used from the Recovery Console.

Extended information:

Example of DEL command:

To delete the name on drive C:\ Test folder, please type one of the following commands:

del c:\test
Copy after login
del c:\test\*.*
Copy after login

Note: *.txt* files will be deleted if you run:

del *.txt
Copy after login

command

Because the 8.3 file name naming method of dos will change *.txt to *.txt when it is named as a file name in 8.3 format

Note: del cannot delete folders, only files. Operation

For more related knowledge, please visit PHP Chinese website! !

The above is the detailed content of What is the function of del key?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
del
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template