How Can I save Image file with TimeStamp as File Name ?

davidmd

Member
Licensed User
Longtime User
Hi

I tried to save Camera Images As Timestamp file name...
I tried to use TimeStamp as String...
DateTime(Now) etc... ( dimmed Now As long)

Gor Java Error, or long number (unix ?)
That do Not changed,( Update per current DateTime(Now) )


Any Idea ?
Thanks!!!
:sign0163:
:BangHead:
 

davidmd

Member
Licensed User
Longtime User
thanks
it is working great

but
how can i change the long number
into actual date and time ?
( if i wish to check the saved file ??)
 
Upvote 0

ukimiku

Active Member
Licensed User
Longtime User
If your DateTime formats contain slashes ("/") or other characters not allowed by other operating systems as components of file names, you should set DateFormat and TimeFormat to something without those "illegal" characters. At least if you want to transfer these files to other computers, running Windows or MacOS, or to a server that runs one of those OSs.

Regards,
 
Upvote 0
Top