Hi there,
I am trying to format a file name as the following: 001test.csv, 002test.csv... 059test.csv.
I am currently using:
Qt Code:
  1. file.setFileName(folder + "/" + QString::number(someNumber) + file + ".csv");
To copy to clipboard, switch view to plain text mode 
But obviously that just sets the file name to 1test, 2test... 59test. Any thoughts?

Cheers,
Phil Winder
www.philwinder.com