Name of the auto-export file can be defined either in GUI (HQ panel->experiment properties) or in code snippets. I guess you would like to change the name on every experiment run, such that a new export does not overwrite the old file. If so, you can make up a name by taking a current date/time and format it to a string, for example, by placing the following code in the Start snippet:
AutoExportFile=”c:\\temp\\”+DateTime.Now.ToString(“dd-MM_HH-mm”)+”.txt”;
AutoExportFile is a proxy variable. The system variable, DateTime.Now, returns the current computer time and it gets converted to a formatted string. As result, a file, like ‘31-12_16-44.txt’ will be created. Note that you need to point on an existing folder, use double slashes and add a file extension. Also, avoid using some special symbols in the formatted string, for example ‘:’, because they are not allowed in file names. You can read more about various formats for dates and times in C# here: http://msdn.microsoft.com/en-us/library/zdtaw1bw.aspx