Files
atom/Atom/Classes/FileSystemHelper.h

13 lines
339 B
Objective-C

#import <Foundation/Foundation.h>
#import <JavaScriptCore/JavaScriptCore.h>
#import "JSCocoa.h"
@interface FileSystemHelper : NSObject {
JSContextRef _ctx;
}
- (id)initWithJSContextRef:(JSContextRef)ctx;
- (void)contentsOfDirectoryAtPath:(NSString *)path recursive:(BOOL)recursive onComplete:(JSValueRefAndContextRef)jsFunction;
@end