// // NIMKitFileLocationHelper.h // NIMKit // // Created by chris on 2016/11/12. // Copyright © 2016年 NetEase. All rights reserved. // #import @interface NIMKitFileLocationHelper : NSObject + (NSString *)getAppDocumentPath; + (NSString *)getAppTempPath; + (NSString *)userDirectory; + (NSString *)genFilenameWithExt:(NSString *)ext; + (NSString *)filepathForVideo:(NSString *)filename; + (NSString *)filepathForImage:(NSString *)filename; @end