覆盖羽声

This commit is contained in:
启星
2025-10-20 09:43:10 +08:00
parent affed1af58
commit 0d82f9e0ef
1331 changed files with 43209 additions and 14707 deletions

View File

@@ -0,0 +1,42 @@
//
// QXFileManager.h
// QXLive
//
// Created by 启星 on 2025/5/8.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface QXFileManager : NSObject
///获取Documents目录路径
+(NSString*)getDocumentPath;
///获取Library/Preferences目录路径
+(NSString*)getLibraryPreferencesPath;
///获取Library/Caches路径
+(NSString*)getLibraryCachesPath;
/// 获取tmp路径
+(NSString*)getTmpPath;
/// 搜索历史记录问价写入
+(BOOL)writeSearchHistoryWithContent:(NSString*)content;
///获取搜索历史
+(NSArray<NSString*>*)getSearchHistory;
///删除历史记录
+(BOOL)removeSearchHistory;
// 创建下载文件路径
+ (NSString*)createLocalSourceVideoDirectory;
// 获取文件下载路径
+ (NSString*)getGiftVideoPath:(NSString*)videoName;
// 检查文件是否存在
+ (BOOL)isExistsFileWithFilePath:(NSString *)filePath;
@end
NS_ASSUME_NONNULL_END