mirror of
https://github.com/AAndyProgram/SCrawler.git
synced 2026-03-14 15:52:18 +00:00
YT VideoOptionsForm: file path is cleared when the cancel button is clicked (browse button); remove the context menu when the right clicking on browse button; add 'ButtonRC' class SCrawler API.OnlyFans: add check config to the SiteSettings; update config; add 'Keydb_Api' property; reset 'LastDateUpdated' when rules change; add support 'prefix/suffix' and 'start/end' to support other rules formats DownloadFeedForm: update 'BTT_CURR_SESSION_SET_Click' function TDownloader: update 'FilesLoadLastSession' function
24 lines
503 B
Batchfile
24 lines
503 B
Batchfile
REM https://superuser.com/a/577640/1410018
|
|
|
|
@echo off
|
|
|
|
set dirname=_MEI
|
|
set usewildcard=true
|
|
set found=false
|
|
if %usewildcard% == true (
|
|
set dirname=*%dirname%*
|
|
)
|
|
set directorytosearch=%UserProfile%\AppData\Local\Temp
|
|
echo Searching for %dirname% in %directorytosearch%
|
|
|
|
for /d %%i in (%directorytosearch%\%dirname%) do (
|
|
IF EXIST %%i (
|
|
set found=true
|
|
echo Deleting the folder %%i
|
|
rmdir /s /q "%%i"
|
|
)
|
|
)
|
|
|
|
if NOT "%found%" == "true" (
|
|
echo No directories were found with the name of %dirname%
|
|
) |