12345678910111213141516171819202122232425262728 |
- //
- // NTESFileLocationHelper.h
- // NIM
- //
- // Created by chris on 15/4/12.
- // Copyright (c) 2015年 Netease. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #define ImageExt (@"jpg")
- @interface NTESFileLocationHelper : NSObject
- + (NSString *)getAppDocumentPath;
- + (NSString *)getAppTempPath;
- + (NSString *)userDirectory;
- + (NSString *)genFilenameWithExt:(NSString *)ext;
- + (NSString *)filepathForVideo:(NSString *)filename;
- + (NSString *)filepathForImage:(NSString *)filename;
- @end
|