Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
検索すると:
dir /b /s *.txt
拡張子が付いたすべてのファイル/フォルダーを取得します.txt。しかし、のような拡張子がある場合にも取得します.txtx。正確な拡張子を検索するにはどうすればよいですか?
.txt
.txtx
あなたはこれを試すことができます
dir /s /b *.txt | findstr /v .txt.
また
dir /s /b *.txt | findstr /e .txt
dir /b *.txt | findstr .txt$
なぜこのように動作するのかわかりませんが、これは機能します: dir /b /s .txt | findstr /e .txt. 醜いが動作します。
dir /b /s .txt | findstr /e .txt