CWFlieManager.h 519 B

12345678910111213141516171819202122232425
  1. //
  2. // CWFlieManager.h
  3. // QQVoiceDemo
  4. //
  5. // Created by chavez on 2017/10/13.
  6. // Copyright © 2017年 陈旺. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "CWSington.h"
  10. @interface CWFlieManager : NSObject
  11. singtonInterface;
  12. // 文件夹路径
  13. + (NSString *)CWFolderPath;
  14. // 变声保存的文件路径
  15. + (NSString *)soundTouchSavePathWithFileName:(NSString *)fileName;
  16. // 音频文件保存的整个路径
  17. + (NSString *)filePath;
  18. // 删除文件
  19. + (void)removeFile:(NSString *)filePath;
  20. @end