Updated the custom build task

This commit is contained in:
atanasovg
2014-03-19 16:48:18 +02:00
parent 8930e038f8
commit aeadb82cb2

View File

@@ -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;
//}
}
}
}