Skip to content

Timezone Conversion

Robin Rodricks edited this page Oct 12, 2020 · 17 revisions

API

  • TimeConversion - Server timestamps are converted into the given timezone. You need to set the other properties for this to work. Default: FtpDate.ServerTime.

    • FtpDate.ServerTime will return the original timestamp.
    • FtpDate.LocalTime will convert the timestamp into your local machine's timezone.
    • FtpDate.UTC will convert the timestamp into UTC format (GMT+0).
  • TimeZone - The timezone of the FTP server. If the server is in Tokyo with UTC+9 then set this to 9. If the server returns timestamps in UTC then keep this 0. Default: 0.

  • LocalTimeZone (.NET core only) - The timezone of your machine. If your machine is in Tokyo with UTC+9 then set this to 9. If your machine is synchronized with UTC then keep this 0. Default: 0.

FAQs

How do I retrieve date/time values in UTC?

Set the server's timezone into TimeZone and then set TimeConversion = FtpDate.UTC

How do I retrieve date/time values in my local timezone?

Set the server's timezone into TimeZone and then set TimeConversion = FtpDate.LocalTime

For .NET Core/.NET Standard users: You need to set LocalTimeZone with the timezone of your machine.

Clone this wiki locally