Vision Posted April 14, 2008 Posted April 14, 2008 (edited) Hello Mates is it possible to change the filename the the date and time? Dim $filename = "dd_mm_yy-hh-mm-ss.txt";change the name to 14_04_08-12_35_56.txt when its saved) Dim $write = $NetComm.InputData Dim $filehandle = FileOpen($filename, 1) FileWrite($filehandle, $write) FileClose($filehandle) regards Edited April 14, 2008 by Vision
LogicalAI Posted April 14, 2008 Posted April 14, 2008 Check out the Macros sectionhttp://www.autoitscript.com/autoit3/docs/macros.htm@MDAY @MIN @MON
LIMITER Posted April 14, 2008 Posted April 14, 2008 Probably something like this : FileMove("dd_mm_yy-hh-mm-ss.txt",@MDAY & "_" & @MON & "_" & @YEAR & "-" & @HOUR & "_" & @MIN & "_" & @SEC & ".txt") ;do not forget to put the directory path too ;for ex. FileMove("C:\dir\dd_mm_yy-hh-mm-ss.txt","C:\dir\" & @MDAY & "_" & @MON & "_" & @YEAR & "-" & @HOUR & "_" & @MIN & "_" & @SEC & ".txt")
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now