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