From 26657b46d875a0b360c2d3aa203bf5f25213c36c Mon Sep 17 00:00:00 2001 From: Hagen Huebel Date: Tue, 2 May 2017 00:46:21 +0200 Subject: [PATCH] fixed property-names for created/ctime and modified/mtime in ReadDirItem --- FS.common.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FS.common.js b/FS.common.js index 23c4d60..a351e30 100644 --- a/FS.common.js +++ b/FS.common.js @@ -31,8 +31,8 @@ type MkdirOptions = { }; type ReadDirItem = { - created: ?Date; // The creation date of the file (iOS only) - modified: Date; // The last modified date of the file + ctime: ?Date; // The creation date of the file (iOS only) + mtime: Date; // The last modified date of the file name: string; // The name of the item path: string; // The absolute path to the item size: string; // Size in bytes