Collections:
Other Resources:
Wildcard Character In File Names
What are wildcard characters in file names?
✍: FYIcenter.com
wildcard characters in file names are special characters that Windows will them as match patterns to search for files. If any matches found, the given file name will be replaced with matched file names.
Many Windows commands support two wildcard characters in file names:
1. ? (question mark) - Used to match for any single character at the given position in the file name.
For example, if you type "gloss?.doc", you will locate the file "Glossy.doc" or "Gloss1.doc" but not "Glossary.doc":
C:\fyicenter>dir /b gloss?.doc Gloss1.doc Glossy.doc
2. * (asterisk) - Used to match for any number of any characters at the given position in the file name.
If you are looking for a file that you know starts with "gloss" but you cannot remember the rest of the file name, type "gloss*". This locates all files of any file type that begin with "gloss" including Glossary.txt, Glossary.doc, and Glossy.doc:
C:\fyicenter>dir /b gloss* Gloss1.doc Glossary.doc Glossary.txt Glossy.doc
⇒ Special File Names Used by Windows
2021-04-15, 1734🔥, 0💬
Popular Posts:
How to select system language during the Windows 7 initial set up process? If you bought your comput...
What is "CNG Key Isolation" in my Windows XP service list? And how is "CNG Key Isolation" service re...
What is "Pml Driver HPZ12" in my Windows 7 service list? And how is "Pml Driver HPZ12" service relat...
What is the "CmRcService.exe" process on windows 7? Is the "CmRcService.exe" process a virus? Can I ...
Extracting All Files from a ZIP File 1. Run WinZIP and select menu File > Open Archive. The "Open Ar...