Any statistics after searchin the list of files? is that possible?

If you are experiencing problems with "Everything", post here for assistance.
mihmann
Posts: 40
Joined: Thu Nov 14, 2019 8:57 am

Re: Any statistics after searchin the list of files? is that possible?

Post by mihmann »

if I add the exception path

my result is not looking properly)

Code: Select all

:A Great Big World - Say Something (Vw):Achi Mefaridze - Damibrune Sikvaruli:Achi Mefaridze - Nu Ezeb Shvas:Achi Meparidze - Mapatie:Achi Meparidze - Ne Rasstanemsia S Toboi:4128 - Lela Tcurtcumia - Me Da Shen:

all the lines go together and there no scores at all...
void
Developer
Posts: 15195
Joined: Fri Oct 16, 2009 11:31 pm

Re: Any statistics after searchin the list of files? is that possible?

Post by void »

! must be escape with ^^! when delayed variable expansion is active.

Please try:

@echo off
setlocal EnableDelayedExpansion
echo|set /p="" > %2
rem for /F "tokens=*" %%A in (%1) do echo START & for %%B in (%%A) do echo "%%B"
for /F "tokens=*" %%A in (%1) do (
    set C=
    for %%B in (%%A) do set C=!C!"%%B" 
    echo|set /p="%%A:" >> %2
    REM ECHO es.exe -get-result-count !C!
    es.exe "D:\path1\" ^| "D:\path2\" ^^!"D:\Path1\subfolder1\" -get-result-count !C! >> %2
)
mihmann
Posts: 40
Joined: Thu Nov 14, 2019 8:57 am

Re: Any statistics after searchin the list of files? is that possible?

Post by mihmann »

It works now!
mihmann
Posts: 40
Joined: Thu Nov 14, 2019 8:57 am

Re: Any statistics after searchin the list of files? is that possible?

Post by mihmann »

I hope the update is coming soon...)
Post Reply