XHFileAttribute.h 558 B

12345678910111213141516171819
  1. //
  2. // XHFileAttribute.h
  3. // XHImageViewer
  4. //
  5. // Created by 曾 宪华 on 14-2-18.
  6. // Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface XHFileAttribute : NSObject
  10. @property (nonatomic, strong) NSString *filePath;
  11. @property (nonatomic, strong) NSDictionary *fileAttributes;
  12. @property (nonatomic, readonly) NSDate *fileModificationDate;
  13. - (id)initWithPath:(NSString *)filePath attributes:(NSDictionary *)attributes;
  14. @end