From aeadb82cb2575a82e288bd108f1c61160c6b1a5b Mon Sep 17 00:00:00 2001 From: atanasovg Date: Wed, 19 Mar 2014 16:48:18 +0200 Subject: [PATCH] Updated the custom build task --- FileSystem/file_system_access.ios.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/FileSystem/file_system_access.ios.ts b/FileSystem/file_system_access.ios.ts index a313aa385..4f2f99576 100644 --- a/FileSystem/file_system_access.ios.ts +++ b/FileSystem/file_system_access.ios.ts @@ -3,6 +3,10 @@ export module tk { export module io { export class FileSystemAccess { + private keyFileType = "NSFileType"; + private keyModificationTime = "NSFileModificationDate"; + private keyReadonly = "NSFileImmutable"; + public getReadonly(path: string): boolean { // TODO: Not implemented return false; @@ -77,6 +81,13 @@ export module tk { public writeText(path: string, content: string, onSuccess?: () => any, onError?: (error: any) => any) { // TODO: Not implemented } + + //private getKnownPath(folderType: number): string { + // var fileManager = Foundation.NSFileManager.defaultManager(); + + + // return folder; + //} } } } \ No newline at end of file