Get number of files in a folder (and it's subfolders etc.)

Hi @muehlbauer157

Can you try with this expression

Directory.GetFiles(Environment.CurrentDirectory+"\Input\","*.*",SearchOption.AllDirectories)

SearchOption.AllDirectories - Used for searching all the directories in the mentioned folder path

Regards
Gokul

1 Like