mirror of
https://github.com/SteamAutoCracks/Steam-auto-crack.git
synced 2025-05-19 16:04:00 +02:00
17 lines
284 B
Batchfile
17 lines
284 B
Batchfile
@echo off
|
|
chcp 65001 >nul 2>nul
|
|
cd /d %~dp0
|
|
del /f /s /q %~dp0..\Temp\Foundfile.txt >nul 2>nul
|
|
if /i [%1]==[] goto usage
|
|
if /i [%2]==[] goto usage
|
|
|
|
cd /d %1
|
|
mkdir %~dp0..\Temp\
|
|
dir /b /s %2>%~dp0..\Temp\Foundfile.txt
|
|
|
|
goto end
|
|
|
|
:usage
|
|
echo Usage: FileFinder.bat Folder FileName
|
|
|
|
:end
|