aboutsummaryrefslogtreecommitdiff
path: root/okio-fakefilesystem/src/commonMain/kotlin/okio/fakefilesystem/time.kt
diff options
context:
space:
mode:
Diffstat (limited to 'okio-fakefilesystem/src/commonMain/kotlin/okio/fakefilesystem/time.kt')
-rw-r--r--okio-fakefilesystem/src/commonMain/kotlin/okio/fakefilesystem/time.kt42
1 files changed, 42 insertions, 0 deletions
diff --git a/okio-fakefilesystem/src/commonMain/kotlin/okio/fakefilesystem/time.kt b/okio-fakefilesystem/src/commonMain/kotlin/okio/fakefilesystem/time.kt
new file mode 100644
index 00000000..d3f3e6b6
--- /dev/null
+++ b/okio-fakefilesystem/src/commonMain/kotlin/okio/fakefilesystem/time.kt
@@ -0,0 +1,42 @@
+/*
+ * 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.
+ */
+@file:JvmName("-Time")
+package okio.fakefilesystem
+
+import kotlinx.datetime.Instant
+import okio.ExperimentalFileSystem
+import okio.FileMetadata
+import kotlin.jvm.JvmName
+
+@JvmName("newFileMetadata")
+@ExperimentalFileSystem
+internal fun FileMetadata(
+ isRegularFile: Boolean = false,
+ isDirectory: Boolean = false,
+ size: Long? = null,
+ createdAt: Instant? = null,
+ lastModifiedAt: Instant? = null,
+ lastAccessedAt: Instant? = null
+): FileMetadata {
+ return FileMetadata(
+ isRegularFile = isRegularFile,
+ isDirectory = isDirectory,
+ size = size,
+ createdAtMillis = createdAt?.toEpochMilliseconds(),
+ lastModifiedAtMillis = lastModifiedAt?.toEpochMilliseconds(),
+ lastAccessedAtMillis = lastAccessedAt?.toEpochMilliseconds()
+ )
+}