Medic873 0 Posted January 30, 2011 I am trying to set the current date as a variable here is my code $Date = "HOW DO I GET THE DATE?"; FileWrite ("C:\Windows\Logfile.txt"," Date: " & $Date) how can i do this progammicly Share this post Link to post Share on other sites
JoHanatCent 13 Posted January 30, 2011 MayBe: $Date = @MDAY & '_' & @MON & '_' & @YEAR FileWrite("C:\Windows\Logfile.txt", " Date: " & $Date) Share this post Link to post Share on other sites
wakillon 403 Posted January 30, 2011 (edited) Why don't you use _FileWriteLog ? #include <file.au3> _FileWriteLog ( @ScriptDir & "\my.log", "Text 1" ) _FileWriteLog ( @ScriptDir & "\my.log", "Text 2" ) my.log content : 2011-01-30 10:49:37 : Text 1 2011-01-30 10:49:37 : Text 2 Edited January 30, 2011 by wakillon AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Share this post Link to post Share on other sites