29 lines
534 B
Objective-C
29 lines
534 B
Objective-C
//
|
|
// NTESFileLocationHelper.h
|
|
// NIM
|
|
//
|
|
// Created by chris on 15/4/12.
|
|
// Copyright (c) 2015年 Netease. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#define VideoExt (@"mp4")
|
|
#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 |