-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNSFileManager+Convenience.m
260 lines (207 loc) · 6.85 KB
/
NSFileManager+Convenience.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
//
// NSFileManager+Convenience.m
// Sleep Diary
//
// Created by Alexander Ivanov on 14.11.16.
// Copyright © 2016 Alexander Ivanov. All rights reserved.
//
#import "NSFileManager+Convenience.h"
@implementation NSFileManager (Convenience)
- (NSURL *)URLForDirectory:(NSSearchPathDirectory)directory {
return [self URLsForDirectory:directory inDomains:NSUserDomainMask].firstObject;
}
- (NSURL *)URLForGroupIdentifier:(NSString *)groupIdentifier {
return [self containerURLForSecurityApplicationGroupIdentifier:groupIdentifier];
}
+ (NSURL *)URLForDirectory:(NSSearchPathDirectory)directory {
return [[self defaultManager] URLForDirectory:directory];
}
+ (NSURL *)URLForGroupIdentifier:(NSString *)groupIdentifier {
return [[self defaultManager] URLForGroupIdentifier:groupIdentifier];
}
@end
@implementation NSURL (NSFileManager)
- (NSDictionary *)fileAttributes {
NSError *error = Nil;
NSDictionary *dictionary = [[NSFileManager defaultManager] attributesOfItemAtPath:self.path error:Nil];
[error log:@"attributesOfItemAtPath:"];
return dictionary;
}
- (NSDate *)fileCreationDate {
return [[self fileAttributes] fileCreationDate];
}
- (NSDate *)fileModificationDate {
return [[self fileAttributes] fileModificationDate];
}
- (NSUInteger)fileSize {
return (NSUInteger)[[self fileAttributes] fileSize];
}
- (id)resourceValueForKey:(NSString *)key {
id value = Nil;
NSError *error = Nil;
if (![self getResourceValue:&value forKey:key error:&error])
[error log:@"getResourceValue:"];
return value;
}
- (NSString *)fileSizeString {
NSUInteger fileSize = [self fileSize];
return [NSByteCountFormatter stringFromByteCount:fileSize countStyle:NSByteCountFormatterCountStyleFile];
}
- (BOOL)isExistingItem {
return [[NSFileManager defaultManager] fileExistsAtPath:self.path isDirectory:Nil];
}
- (BOOL)isExistingFile {
BOOL isDir = NO;
return [[NSFileManager defaultManager] fileExistsAtPath:self.path isDirectory:&isDir] && !isDir;
}
- (BOOL)isExistingDirectory {
BOOL isDir = NO;
return [[NSFileManager defaultManager] fileExistsAtPath:self.path isDirectory:&isDir] && isDir;
}
- (NSURL *)copyItem:(NSURL *)dstURL overwrite:(BOOL)overwrite {
if ([dstURL isExistingDirectory])
dstURL = [self URLByChangingPath:dstURL];
if ([dstURL isExistingFile]) {
if (!overwrite)
return Nil;
if ([dstURL isExistingItem])
[dstURL removeItem];
}
NSError *error = Nil;
BOOL flag = [[NSFileManager defaultManager] copyItemAtURL:self toURL:dstURL error:&error];
[error log:@"copyItemAtURL:"];
return flag && !error ? dstURL : Nil;
}
- (NSURL *)copyItem:(NSURL *)dstURL {
return [self copyItem:dstURL overwrite:NO];
}
- (NSURL *)moveItem:(NSURL *)dstURL overwrite:(BOOL)overwrite {
if ([dstURL isExistingDirectory])
dstURL = [self URLByChangingPath:dstURL];
if ([dstURL isExistingFile]) {
if (!overwrite)
return Nil;
if ([dstURL isExistingItem])
[dstURL removeItem];
}
NSError *error = Nil;
BOOL flag = [[NSFileManager defaultManager] moveItemAtURL:self toURL:dstURL error:&error];
[error log:@"moveItemAtURL:"];
return flag && !error ? dstURL : Nil;
}
- (NSURL *)moveItem:(NSURL *)dstURL {
return [self moveItem:dstURL overwrite:NO];
}
- (BOOL)removeItem {
NSError *error = Nil;
BOOL flag = [[NSFileManager defaultManager] removeItemAtURL:self error:&error];
[error log:@"removeItemAtURL:"];
return flag && !error;
}
- (BOOL)createDirectoryWithAttributes:(NSDictionary *)attributes {
NSError *error = Nil;
BOOL flag = [[NSFileManager defaultManager] createDirectoryAtURL:self withIntermediateDirectories:YES attributes:attributes error:&error];
[error log:@"createDirectoryAtURL:"];
return flag && !error;
}
- (BOOL)createDirectory {
return [self createDirectoryWithAttributes:Nil];
}
- (NSURL *)createDirectory:(NSString *)pathComponent withAttributes:(NSDictionary *)attributes {
NSURL *url = [self URLByAppendingPathComponent:pathComponent];
return [url createDirectoryWithAttributes:attributes] ? url : Nil;
}
- (NSURL *)createDirectory:(NSString *)pathComponent {
return [self createDirectory:pathComponent withAttributes:Nil];
}
- (NSArray *)allItems:(BOOL)subdirectories includingPropertiesForKeys:(NSArray *)keys {
NSDirectoryEnumerationOptions options = subdirectories ? 0 : NSDirectoryEnumerationSkipsPackageDescendants | NSDirectoryEnumerationSkipsSubdirectoryDescendants;
NSDirectoryEnumerator *enumerator = [[NSFileManager defaultManager] enumeratorAtURL:self includingPropertiesForKeys:keys options:options errorHandler:^BOOL(NSURL *url, NSError *error) {
[error log:@"enumeratorAtURL:"];
return YES;
}];
NSMutableArray *array = [NSMutableArray new];
while (YES) {
NSURL *url = [enumerator nextObject];
if (url)
[array addObject:url];
else
break;
}
return array;
}
- (NSArray *)allItems:(BOOL)subdirectories {
return [self allItems:subdirectories includingPropertiesForKeys:Nil];
}
- (NSArray *)allItems {
return [self allItems:NO];
}
- (NSArray *)allFiles:(BOOL)subdirectories {
NSArray *items = [self allItems:subdirectories includingPropertiesForKeys:@[ NSURLIsDirectoryKey ]];
NSArray *files = [items query:^BOOL(id item) {
NSNumber *isDirectory = [item resourceValueForKey:NSURLIsDirectoryKey];
return isDirectory && !isDirectory.boolValue;
}];
return files;
}
- (NSArray *)allFiles {
return [self allFiles:NO];
}
- (NSArray *)allDirectories:(BOOL)subdirectories {
NSArray *items = [self allItems:subdirectories includingPropertiesForKeys:@[ NSURLIsDirectoryKey ]];
NSArray *files = [items query:^BOOL(id item) {
NSNumber *isDirectory = [item resourceValueForKey:NSURLIsDirectoryKey];
return isDirectory && isDirectory.boolValue;
}];
return files;
}
- (NSArray *)allDirectories {
return [self allDirectories:NO];
}
- (void)clearDirectory:(BOOL)directories {
NSArray *items = directories ? [self allItems:NO includingPropertiesForKeys:Nil] : [self allFiles:NO];
for (NSURL *item in items)
[item removeItem];
}
- (void)clearDirectory {
[self clearDirectory:NO];
}
@end
@implementation NSArray (Write)
- (NSArray *)removeNull {
NSMutableArray *arr = [self mutableCopy];
for (NSInteger idx = arr.count - 1; idx >= 0; idx--)
if (arr[idx] == [NSNull null])
[arr removeObjectAtIndex:idx];
return arr;
}
- (BOOL)writeToURL:(NSURL *)url {
NSError *error = Nil;
BOOL write = NO;
if (@available(iOS 11.0, *))
write = [self writeToURL:url error:&error];
else
write = [self writeToURL:url atomically:YES];
[error log:@"writeToURL:"];
return write;
}
@end
@implementation NSDictionary (Write)
- (NSDictionary *)removeNull {
NSMutableDictionary *dic = [self mutableCopy];
for (id<NSCopying> key in dic.allKeys)
if (dic[key] == [NSNull null])
dic[key] = Nil;
return dic;
}
- (BOOL)writeToURL:(NSURL *)url {
NSError *error = Nil;
BOOL write = NO;
if (@available(iOS 11.0, *))
write = [self writeToURL:url error:&error];
else
write = [self writeToURL:url atomically:YES];
[error log:@"writeToURL:"];
return write;
}
@end