mirror of
https://github.com/status-im/react-native-camera.git
synced 2025-02-24 17:58:20 +00:00
18 lines
359 B
Objective-C
18 lines
359 B
Objective-C
//
|
|
// RNFileSystem.h
|
|
// RCTCamera
|
|
//
|
|
// Created by Joao Guilherme Daros Fidelis on 19/01/18.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface RNFileSystem : NSObject
|
|
|
|
+ (BOOL)ensureDirExistsWithPath:(NSString *)path;
|
|
+ (NSString *)generatePathInDirectory:(NSString *)directory withExtension:(NSString *)extension;
|
|
+ (NSString *)cacheDirectoryPath;
|
|
|
|
@end
|
|
|