NIMKitFileLocationHelper.h 486 B

12345678910111213141516171819202122232425
  1. //
  2. // NIMKitFileLocationHelper.h
  3. // NIMKit
  4. //
  5. // Created by chris on 2016/11/12.
  6. // Copyright © 2016年 NetEase. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface NIMKitFileLocationHelper : NSObject
  10. + (NSString *)getAppDocumentPath;
  11. + (NSString *)getAppTempPath;
  12. + (NSString *)userDirectory;
  13. + (NSString *)genFilenameWithExt:(NSString *)ext;
  14. + (NSString *)filepathForVideo:(NSString *)filename;
  15. + (NSString *)filepathForImage:(NSString *)filename;
  16. @end