Gsuite Modified time and modified time raw difference?

Hello everyone

I am using Gsuite and want to download every file from a drive folder which was modified in the last 5 mins or so. There are two ways showing by which i can obtain the modified time of a particular spreadsheet.
One is ModifiedTime and the other is ModifiedTimeRaw? Whats the difference between them?
Same goes for created time.
Any help would be greatly appreciated.

Thanks

@Aditya_Kumar3

Refer this

https://developers.google.com/resources/api-libraries/documentation/drive/v3/csharp/latest/classGoogle_1_1Apis_1_1Drive_1_1v3_1_1Data_1_1File.html

Hi
Thanks but im a bit confused…

ModifiedTime says : representation of [ModifiedTimeRaw]

so whats the difference if this also shows modified time RAW.

@Aditya_Kumar3

  1. “ModifiedTime” represents “System.DateTime” in which you can change
    Date and Time from one format to other format.

  2. “ModifiedTimeRaw” represents “RFC 3339 date-time” – Date and Time on
    the Internet Timestamps.
    Here is a example of Internet date/time format – 1985-04-12T23:20:50.52Z

  3. There are different Timezones across the world and should be followed a
    standard DateTime format which will convert according to their
    timezones.

  4. You better use “ModifiedTime” as its System DateTime.

1 Like

I get it now! Thankyou so much! Really appreciated!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.