Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- setlocal enabledelayedexpansion
- set toFind="\Жизнь\. "
- for %%d in (A B C D E F G H I J K L M N O P Q R S T U V W X Y Z) do (
- if exist %%d:\ (
- echo ---- checking drive %%d ----
- cd /d "%%d:\"
- echo %%d:\
- for /r "." %%a in (.) do (
- set fname=%%a
- set fname=!fname:~-9!
- echo folder:%%a
- if "!fname!"==%toFind% (
- echo Found:%%a
- pause
- exit
- )
- )
- )
- )
Advertisement
Add Comment
Please, Sign In to add comment