I have the following in a .bat file but we are moving to the cloud and cannot use .bat files. How can I do the same thing using a syscommand node? Or is there a different node/combination of nodes I should use to count the number of a certain type of files in a folder?
@echo off setlocal enableextensions set count=0 for %%x in (\\servername\appprodline\foldername\*.RQ500) do @(set /a count+=1 > nul) echo %count% endlocal
Thanks!