Hi there,
did you also experience that the “List Files/Folders” node are working extremely slow when it’s applied to network folders or folders with a bigger amount of files?
I just did a comparison with python (started within a python source node).
for root, dirs, files in os.walk(InPath, topdown=False):
for name in files:
if name.endswith('.txt'):
csvs_full.append(os.path.join(root, name))
csvs.append(name)
this simple os.walk statement is 20 to 100 times faster (seconds compared to hours in KNIME natively)
Andreas