guoyu/log/查找Whisper目录.bat
2025-12-11 23:28:07 +08:00

23 lines
603 B
Batchfile

@echo off
chcp 65001 >nul
echo 正在查找 Whisper 服务目录...
echo.
echo 查找包含 app.py 的目录:
echo ========================================
dir /s /b C:\*app.py 2>nul | findstr /i whisper
dir /s /b D:\*app.py 2>nul | findstr /i whisper
echo.
echo 查找名为 whisper 的目录:
echo ========================================
dir /s /b /ad C:\*whisper* 2>nul
dir /s /b /ad D:\*whisper* 2>nul
echo.
echo 查找 Python 进程:
echo ========================================
tasklist | findstr /i python
echo.
echo ========================================
echo 查找完成
echo.
pause