Multiple file generation from csv or text file input?

Multiple file generation from csv or text file input?

14
Basic UserBasic User
14

    16:27 - 10 days ago#1

    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.

    Mofi
    6,572524
    Grand MasterGrand Master
    6,572524

      5:11 - 10 days ago#2

      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
      14
      Basic UserBasic User
      14

        8:53 - 9 days ago#3

        Thank you! I will give it a try. I'm not sure where the generated html files would be saved, but I'm sure I'll find out 🙂