ChatCacheFileUtil.h 474 B

1234567891011121314151617181920
  1. //
  2. // ChatCacheFileUtil.h
  3. // NewMC
  4. //
  5. // Created by 话语科技 on 12-10-25.
  6. //
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface ChatCacheFileUtil : NSObject
  10. + (ChatCacheFileUtil*)sharedInstance;
  11. - (NSString*)userDocPath;
  12. - (BOOL) deleteWithContentPath:(NSString *)thePath;
  13. - (NSString*)chatCachePathWithFriendId:(NSString*)theFriendId andType:(NSInteger)theType;
  14. - (void)deleteFriendChatCacheWithFriendId:(NSString*)theFriendId;
  15. - (void)deleteAllFriendChatDoc;
  16. @end