NTESFileLocationHelper.h 507 B

12345678910111213141516171819202122232425262728
  1. //
  2. // NTESFileLocationHelper.h
  3. // NIM
  4. //
  5. // Created by chris on 15/4/12.
  6. // Copyright (c) 2015年 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #define ImageExt (@"jpg")
  10. @interface NTESFileLocationHelper : NSObject
  11. + (NSString *)getAppDocumentPath;
  12. + (NSString *)getAppTempPath;
  13. + (NSString *)userDirectory;
  14. + (NSString *)genFilenameWithExt:(NSString *)ext;
  15. + (NSString *)filepathForVideo:(NSString *)filename;
  16. + (NSString *)filepathForImage:(NSString *)filename;
  17. @end