I'm not really a C programmer but I know enough to be dangerous. How can I assign the file created date via GetFileTime to szOptionalField1? Thanks!
struct _FILETIME ft;SYSTEMTIME stUTC, stLocal;
GetFileTime(szCsvFile,&ft,NULL,NULL);
FileTimeToSystemTime(&ft, &stUTC);
SystemTimeToTzSpecificLocalTime(NULL, &stUTC, &stLocal);
//stLocal.wMonth, stLocal.wDay, stLocal.wYear
char *szOptionalField1 = "PrintDateHere";