123456789101112131415161718192021222324252627 |
- //
- // RQDownloadConst.h
- // TEST
- //
- // Created by 张嵘 on 2018/10/22.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #ifndef RQDownloadConst_h
- #define RQDownloadConst_h
- #define RQFileManager [NSFileManager defaultManager]
- // 缓存主目录
- #define RQCachesDirectory [[NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) lastObject] stringByAppendingString:@"/RQDownload/"]
- #define RQSavedDownloadModelsFilePath [RQCachesDirectory stringByAppendingFormat:@"RQSavedDownloadModels"]
- #define RQSavedDownloadModelsBackup [RQCachesDirectory stringByAppendingFormat:@"RQSavedDownloadModelsBackup"]
- #define rq_tmpDownloadBaseFilePath [NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) objectAtIndex:0]
- // 下载operation最大并发数
- #define RQDownloadMaxConcurrentOperationCount 3
- #endif /* RQDownloadConst_h */
|