Looking at the internet how to merge txt files, I found the CMD command line code below:
for %f in (*.txt) do "%f" >> união.txt
The logic is to loop, grab all the txt files and create a new 'union.txt' file with all of them together.
The same does not work, it opens all files and creates the new one, but the new one goes blank.
Any tips?