Jump to content

FileWrite, Filename with Date/Time


Recommended Posts

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 by Vision
Link to comment
Share on other sites

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")
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...