mirror of
https://github.com/AAndyProgram/SCrawler.git
synced 2026-03-14 15:52:18 +00:00
2024.6.6.0
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
This commit is contained in:
24
Tools/DeleteGDLTempFiles.bat
Normal file
24
Tools/DeleteGDLTempFiles.bat
Normal file
@@ -0,0 +1,24 @@
|
||||
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%
|
||||
)
|
||||
Reference in New Issue
Block a user