I am trying to do a batch-processing with xxHash on a set of DPX-Files. I want to hash every single file and put the hash and the Filename one Folder up in a LOG.
For the One-FolderUp I created a Variable:
%s_dir_1up% = $regext("%s_original_path%","(.*)\\")
I use this with many Workflows.
For the Hashing I tried hard to get so far:
When I replace%comspec% /C "
FOR %A IN ("%s_original_path%")
DO
("%s_ffastrans_dir%\xxhsum.exe" "%A"
>> "%s_dir_1up%\xxHash.JSON")
"
withFOR %A IN ("%s_original_path%")
It will populate the LOG with Windows-related FilesFOR %A IN ("*")
I also tried things like
with no luck.FOR %A IN ("%s_original_path%\*.*")
Any ideas?
thanks a lot,
regards
tom