Jump to content

Recommended Posts

Posted

is it possible to name a filename with the current date and time? (if possible including seconds.)

_Date_Time_GetSystemTime()

_Date_Time_GetSystemTime()

format it with / and : (so cant use those chars in a filename)

any ideas?

  • Moderators
Posted

is it possible to name a filename with the current date and time? (if possible including seconds.)

_Date_Time_GetSystemTime()

_Date_Time_GetSystemTime()

format it with / and : (so cant use those chars in a filename)

any ideas?

C'mon... use StringReplace...

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

  • Developers
Posted

is it possible to name a filename with the current date and time? (if possible including seconds.)

_Date_Time_GetSystemTime()

_Date_Time_GetSystemTime()

format it with / and : (so cant use those chars in a filename)

any ideas?

$filename = @YEAR & @MON & @MDAY & @HOUR & @MIN & @SEC & ".txt"

:)

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

  • Moderators
Posted

$filename = @YEAR & @MON & @MDAY & @HOUR & @MIN & @SEC & ".txt"

:)

That's how I do it personally...

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

  • Developers
Posted

perfect!!

too bad we cant do 12hour format

what made you conclude that ? :)

a single If..Then .. Else ... Endif should solve that for you and I am sure you are able to figure it out yourself :)

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted

you mean like this?

$filename = @HOUR & "." & @MIN & "." & @SEC & "_" & @MON & "-" & @MDAY & "-" & @YEAR

If @HOUR="13" Then

@HOUR="01"

EndIf

If @HOUR="14" Then

@HOUR="02"

EndIf

If @HOUR="15" Then

@HOUR="03"

EndIf

etc.... ???

Posted

perfect!!

thank you much!

I don't know what purpose this would serve, you will never know if a file was saved in the AM or PM...

Posted

wed only be using it during hte day time..

thanks for the thought tho

I don't know what purpose this would serve, you will never know if a file was saved in the AM or PM...

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
×
×
  • Create New...