DP News-Robot |
21. Okt 2020 07:10 |
Delphi: get timestamp as ISO8601 string for use in filenames
On Windows, filenames do not like some characters (including :*and +), so this is a quick way to get a timestamp into ISO8601 format that is compatible with filenames. TimeStamp := Now(); StartIso8601String := DateToISO8601(TimeStamp, False).Replace('-', '').Replace(':', '') // https://en.wikipedia.org/wiki/ISO_86...ne_designators It Depends on the [WayBack]*System.DateUtils unit which had the [WayBack]*DateToISO8601*function [Archive.is]*added in Delphi XE6. A […]
Weiterlesen...
|