Einzelnen Beitrag anzeigen

Benutzerbild von DP News-Robot
DP News-Robot

Registriert seit: 4. Jun 2010
15.010 Beiträge
 
#1

Delphi: get timestamp as ISO8601 string for use in filenames

  Alt 21. Okt 2020, 06:10
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...
  Mit Zitat antworten Zitat