2void
size-match: | file-size-match: | folder-size-match:
regex:"^D:\\totalcmd\\Test\\Calculate\\(.*)$" sizematch:"D:\\totalcmd\\Test\\Calculate\\$1:"
regex:"^D:\\totalcmd\\Test\\Calculate\\(.*)$" file-size-match:"D:\\totalcmd\\Test\\Calculate\\$1:"
bring this result:
D:\totalcmd\Test\Calculate\1.csv
D:\totalcmd\Test\Calculate\2.csv
D:\totalcmd\Test\Calculate\5.csv
According to this image, in my opinion the file 5.csv should NOT be included in the result because the size of the file does not match.
folder-size-match: also produces unexpected results for me:
regex:"^D:\\totalcmd\\Test\\(.*)$" folder-size-match:"D:\\totalcmd\\Test\\$1:"
In my opinion, the "Calculate" folder should not appear in the result.
Please check.
Thank you!
[SOLVED] size-match___file-size-match___folder-size-match
[SOLVED] size-match___file-size-match___folder-size-match
Last edited by tuska on Tue May 28, 2024 12:17 am, edited 1 time in total.
Re: size-match___file-size-match___folder-size-match
Code: Select all
regex:"^D:\\totalcmd\\Test\\Calculate\\(.*)$" sizematch:"D:\\totalcmd\\Test\\Calculate\\$1:"
regex:"^D:\\totalcmd\\Test\\Calculate\\(.*)$" file-size-match:"D:\\totalcmd\\Test\\Calculate\\$1:"
Re: size-match___file-size-match___folder-size-match
Ahh, thanks!NotNull wrote: ↑Mon May 27, 2024 11:50 pmOne of those paths (per query) should be C:\... instead of D:\ .... ?Code: Select all
regex:"^D:\\totalcmd\\Test\\Calculate\\(.*)$" sizematch:"D:\\totalcmd\\Test\\Calculate\\$1:" regex:"^D:\\totalcmd\\Test\\Calculate\\(.*)$" file-size-match:"D:\\totalcmd\\Test\\Calculate\\$1:"
Then the results are correct!
Sorry for inconvenience caused.