// // NTESFileLocationHelper.h // NIM // // Created by chris on 15/4/12. // Copyright (c) 2015年 Netease. All rights reserved. // #import #define ImageExt (@"jpg") @interface NTESFileLocationHelper : NSObject + (NSString *)getAppDocumentPath; + (NSString *)getAppTempPath; + (NSString *)userDirectory; + (NSString *)genFilenameWithExt:(NSString *)ext; + (NSString *)filepathForVideo:(NSString *)filename; + (NSString *)filepathForImage:(NSString *)filename; @end