aboutsummaryrefslogtreecommitdiff
path: root/okio/src/commonTest/kotlin/okio/time.kt
diff options
context:
space:
mode:
Diffstat (limited to 'okio/src/commonTest/kotlin/okio/time.kt')
-rw-r--r--okio/src/commonTest/kotlin/okio/time.kt39
1 files changed, 39 insertions, 0 deletions
diff --git a/okio/src/commonTest/kotlin/okio/time.kt b/okio/src/commonTest/kotlin/okio/time.kt
new file mode 100644
index 00000000..36fdf94a
--- /dev/null
+++ b/okio/src/commonTest/kotlin/okio/time.kt
@@ -0,0 +1,39 @@
+/*
+ * Copyright (C) 2020 Square, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package okio
+
+import kotlinx.datetime.Instant
+
+@ExperimentalFileSystem
+internal val FileMetadata.createdAt: Instant?
+ get() {
+ val createdAt = createdAtMillis ?: return null
+ return Instant.fromEpochMilliseconds(createdAt)
+ }
+
+@ExperimentalFileSystem
+internal val FileMetadata.lastModifiedAt: Instant?
+ get() {
+ val lastModifiedAt = lastModifiedAtMillis ?: return null
+ return Instant.fromEpochMilliseconds(lastModifiedAt)
+ }
+
+@ExperimentalFileSystem
+internal val FileMetadata.lastAccessedAt: Instant?
+ get() {
+ val lastAccessedAt = lastAccessedAtMillis ?: return null
+ return Instant.fromEpochMilliseconds(lastAccessedAt)
+ }