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