QNFile.h 474 B

12345678910111213141516171819202122232425
  1. //
  2. // QNFile.h
  3. // QiniuSDK
  4. //
  5. // Created by bailong on 15/7/25.
  6. // Copyright (c) 2015年 Qiniu. All rights reserved.
  7. //
  8. #import "QNFileDelegate.h"
  9. #import <Foundation/Foundation.h>
  10. @interface QNFile : NSObject <QNFileDelegate>
  11. /**
  12. * 打开指定文件
  13. *
  14. * @param path 文件路径
  15. * @param error 输出的错误信息
  16. *
  17. * @return 实例
  18. */
  19. - (instancetype)init:(NSString *)path
  20. error:(NSError *__autoreleasing *)error;
  21. @end