You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.4 KiB
44 lines
1.4 KiB
// Copyright 2016-present 650 Industries. All rights reserved.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <ExpoModulesCore/EXExportedModule.h>
|
|
#import <ExpoModulesCore/EXModuleRegistryConsumer.h>
|
|
#import <ExpoModulesCore/EXEventEmitter.h>
|
|
#import <ExpoModulesCore/EXFileSystemInterface.h>
|
|
|
|
@interface EXFileSystem : EXExportedModule <EXEventEmitter, EXModuleRegistryConsumer, EXFileSystemInterface>
|
|
|
|
@property (nonatomic, readonly) NSString *documentDirectory;
|
|
@property (nonatomic, readonly) NSString *cachesDirectory;
|
|
@property (nonatomic, readonly) NSString *bundleDirectory;
|
|
|
|
- (instancetype)initWithDocumentDirectory:(NSString *)documentDirectory cachesDirectory:(NSString *)cachesDirectory bundleDirectory:(NSString *)bundleDirectory;
|
|
|
|
- (EXFileSystemPermissionFlags)permissionsForURI:(NSURL *)uri;
|
|
|
|
- (BOOL)ensureDirExistsWithPath:(NSString *)path;
|
|
|
|
- (NSString *)generatePathInDirectory:(NSString *)directory withExtension:(NSString *)extension;
|
|
|
|
@end
|
|
|
|
@protocol EXFileSystemHandler
|
|
|
|
+ (void)getInfoForFile:(NSURL *)fileUri
|
|
withOptions:(NSDictionary *)optionxs
|
|
resolver:(EXPromiseResolveBlock)resolve
|
|
rejecter:(EXPromiseRejectBlock)reject;
|
|
|
|
+ (void)copyFrom:(NSURL *)from
|
|
to:(NSURL *)to
|
|
resolver:(EXPromiseResolveBlock)resolve
|
|
rejecter:(EXPromiseRejectBlock)reject;
|
|
|
|
@end
|
|
|
|
@interface NSData (EXFileSystem)
|
|
|
|
- (NSString *)md5String;
|
|
|
|
@end
|