Is there a relatively simple way within Ultraedit to generate multiple html pages with different file names using a template and a txt or csv file input? My coding ability is limited.

Multiple file generation from csv or text file input?
Multiple file generation from csv or text file input?
That can be much faster and easier done with the Windows Command Processor on CSV or text file contains one file name with file extension per line and there is an HTML template file. Open a Command Prompt and use the command cd to change the current directory to the directory containing the HTML template file and the CSV/TXT file with the file names. Then run following command line:
Code: Select all
for /F "usebackq eol=| delims=" %I in ("File Names List.txt") do copy "Template.html" "%I" >nul
Best regards from an UC/UE/UES for Windows user from Austria
Derek likes this post