12345678910111213141516171819202122232425 |
- //
- // 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
|