In the following way:

Qt Code:
  1. QString nomeFile;
  2. nomeFile = QString
  3. (
  4. QDir::currentPath() + "/Export_%1.txt"
  5. )
  6. .arg(QDate::currentDate().toString("yyyy-MM-dd"));
To copy to clipboard, switch view to plain text mode 

it works!!!

thanks!