mirror of
https://github.com/status-im/react-native-camera.git
synced 2025-02-25 18:35:21 +00:00
17 lines
325 B
Objective-C
17 lines
325 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;
|
|
|
|
@end
|
|
|