Computer Science, asked by artiguptazolo11, 1 year ago

. which characters are used to locate files or folders in case you know only a part of the filename explain their use with their help of examples ​

Answers

Answered by benjaison2006
31

Answer:

If you only know part of the name of a file or folder you are searching for, you can use wild cards such as “*” or “?”. The asterisk can replace a whole group of letters or numbers, while the question mark only replaces one character. For example, typing “books. *” in the search box will find files such as books.

Explanation:

Answered by rainbow70
9

Answer:

wildcard characters

Explanation:

The wildcard characters * and ? can also be used in a combination. The '.*' will search all files whose

names contain only one character, and have any extension. E.g., L.docx, R.pptx, E.txt, etc.

Kips *.??? will display all files with the name starting with 'Kips' followed by any character after that and

having any extension of three characters.

Similar questions