Please help write in batch:
on disk c:\ I have folder named test in this folder i have subfolders whit different names, I need batch command to loop throught all subfolders, and look for files named "Log" and/or "sqlite.sql", if thoose files size < 0 Kb or do not exist then delete this subfolder with all files without promt.
for each sub in Test
if Isfile("Log") or Isfile("sqlite.sql") and EachFileSizes > 0 Then
Else
Sub.delete
End If
next