-
Notifications
You must be signed in to change notification settings - Fork 11
/
FileSave.m
392 lines (277 loc) · 12.7 KB
/
FileSave.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
//
// FileSave.m
//
// Created by Anthony Levings on 10/03/2014.
// Copyright (c) 2014 Gylphi. All rights reserved. You are free to use this code but we'd grateful if you acknowledge the source when using the code or reproducing it.
//
#import "FileSave.h"
@implementation FileSave
#pragma mark - public methods
#pragma mark - data methods
+(BOOL)saveDataToDocumentsDirectory:(NSData *)fileData withName:(NSString *)path andSubDirectory:(NSString *)subdirectory
{
// Remove unnecessary slash if need
path = [self stripSlashIfNeeded:path];
subdirectory = [self stripSlashIfNeeded:subdirectory];
// Create generic beginning to file save path
NSMutableString *savePath = [[NSMutableString alloc] initWithFormat:@"%@/",[self applicationDocumentsDirectory].path];
if (subdirectory){
[savePath appendString:subdirectory];
[self createSubDirectory:[savePath copy]];
[savePath appendString:@"/"];
}
// Add requested save path
[savePath appendString:path];
// Save the file and see if it was successful
BOOL ok = [[NSFileManager defaultManager] createFileAtPath:[savePath copy] contents:fileData attributes:nil];
// Return status of file save
return ok;
}
+(BOOL)saveDataToLibraryDirectory:(NSData *)fileData withName:(NSString *)path andSubDirectory:(NSString *)subdirectory
{
// Remove unnecessary slash if need
path = [self stripSlashIfNeeded:path];
subdirectory = [self stripSlashIfNeeded:subdirectory];
// Create generic beginning to file save path
NSMutableString *savePath = [[NSMutableString alloc] initWithFormat:@"%@/",[self applicationLibraryDirectory].path];
if (subdirectory){
[savePath appendString:subdirectory];
[self createSubDirectory:[savePath copy]];
[savePath appendString:@"/"];
}
// Add requested save path
[savePath appendString:path];
NSLog(@"%@",savePath);
// Save the file and see if it was successful
BOOL ok = [[NSFileManager defaultManager] createFileAtPath:[savePath copy] contents:fileData attributes:nil];
// Return status of file save
return ok;
}
+(BOOL)saveDataToTemporaryDirectory:(NSData *)fileData withName:(NSString *)path andSubDirectory:(NSString *)subdirectory
{
// Remove unnecessary slash if need
path = [self stripSlashIfNeeded:path];
subdirectory = [self stripSlashIfNeeded:subdirectory];
// Create generic beginning to file save path
NSMutableString *savePath = [[NSMutableString alloc] initWithFormat:@"%@/",[self applicationTemporaryDirectory].path];
if (subdirectory){
[savePath appendString:subdirectory];
[self createSubDirectory:[savePath copy]];
[savePath appendString:@"/"];
}
// Add requested save path
[savePath appendString:path];
NSLog(@"%@",savePath);
// Save the file and see if it was successful
BOOL ok = [[NSFileManager defaultManager] createFileAtPath:[savePath copy] contents:fileData attributes:nil];
// Return status of file save
return ok;
}
+(BOOL)saveDataToCachesDirectory:(NSData *)fileData withName:(NSString *)path andSubDirectory:(NSString *)subdirectory
{
// Remove unnecessary slash if need
path = [self stripSlashIfNeeded:path];
subdirectory = [self stripSlashIfNeeded:subdirectory];
// Create generic beginning to file save path
NSMutableString *savePath = [[NSMutableString alloc] initWithFormat:@"%@/",[self applicationCachesDirectory].path];
if (subdirectory){
[savePath appendString:subdirectory];
[self createSubDirectory:[savePath copy]];
[savePath appendString:@"/"];
}
// Add requested save path
[savePath appendString:path];
NSLog(@"%@",savePath);
// Save the file and see if it was successful
BOOL ok = [[NSFileManager defaultManager] createFileAtPath:[savePath copy] contents:fileData attributes:nil];
// Return status of file save
return ok;
}
+(BOOL)saveDataToApplicationSupportDirectory:(NSData *)fileData withName:(NSString *)path andSubDirectory:(NSString *)subdirectory excludeFromBackup:(BOOL)exclude
{
// Remove unnecessary slash if need
path = [self stripSlashIfNeeded:path];
subdirectory = [self stripSlashIfNeeded:subdirectory];
// Create generic beginning to file save path
NSMutableString *savePath = [[NSMutableString alloc] initWithFormat:@"%@/",[self applicationSupportDirectory].path];
if (subdirectory){
[savePath appendString:subdirectory];
[self createSubDirectory:[savePath copy]];
[savePath appendString:@"/"];
}
// Add requested save path
[savePath appendString:path];
NSLog(@"%@",savePath);
NSError *error;
// Save the file and see if it was successful
BOOL ok = [[NSFileManager defaultManager] createFileAtPath:[savePath copy] contents:fileData attributes:nil];
if (exclude) { [[NSURL URLWithString:savePath] setResourceValue:@YES
forKey:NSURLIsExcludedFromBackupKey
error:&error];}
if (error) NSLog(@"%@", error);
// Return status of file save
return ok;
}
#pragma mark - string methods
+(BOOL)saveContentsOfStringToDocumentsDirectory:(NSString *)fileString withName:(NSString *)path andSubDirectory:(NSString *)subdirectory {
// Remove unnecessary slash if need
path = [self stripSlashIfNeeded:path];
// Create generic beginning to file save path
NSMutableString *savePath = [[NSMutableString alloc] initWithFormat:@"%@/",[self applicationDocumentsDirectory].path];
if (subdirectory){
[savePath appendString:subdirectory];
[self createSubDirectory:[savePath copy]];
[savePath appendString:@"/"];
}
// Add requested save path
[savePath appendString:path];
NSError *error;
// Save the file and see if it was successful
BOOL ok = [fileString writeToFile:savePath atomically:NO encoding:NSUTF8StringEncoding error:&error];
if (error) NSLog(@"%@", error);
// Return status of file save
return ok;
}
+(BOOL)saveContentsOfStringToLibraryDirectory:(NSString *)fileString withName:(NSString *)path andSubDirectory:(NSString *)subdirectory {
// Remove unnecessary slash if need
path = [self stripSlashIfNeeded:path];
// Create generic beginning to file save path
NSMutableString *savePath = [[NSMutableString alloc] initWithFormat:@"%@/",[self applicationLibraryDirectory].path];
if (subdirectory){
[savePath appendString:subdirectory];
[self createSubDirectory:[savePath copy]];
[savePath appendString:@"/"];
}
// Add requested save path
[savePath appendString:path];
NSError *error;
// Save the file and see if it was successful
BOOL ok = [fileString writeToFile:savePath atomically:NO encoding:NSUTF8StringEncoding error:&error];
if (error) NSLog(@"%@", error);
// Return status of file save
return ok;
}
+(BOOL)saveContentsOfStringToTemporaryDirectory:(NSString *)fileString withName:(NSString *)path andSubDirectory:(NSString *)subdirectory {
// Remove unnecessary slash if need
path = [self stripSlashIfNeeded:path];
// Create generic beginning to file save path
NSMutableString *savePath = [[NSMutableString alloc] initWithFormat:@"%@/",[self applicationTemporaryDirectory].path];
if (subdirectory){
[savePath appendString:subdirectory];
[self createSubDirectory:[savePath copy]];
[savePath appendString:@"/"];
}
// Add requested save path
[savePath appendString:path];
NSError *error;
// Save the file and see if it was successful
BOOL ok = [fileString writeToFile:savePath atomically:NO encoding:NSUTF8StringEncoding error:&error];
if (error) NSLog(@"%@", error);
// Return status of file save
return ok;
}
+(BOOL)saveContentsOfStringToCachesDirectory:(NSString *)fileString withName:(NSString *)path andSubDirectory:(NSString *)subdirectory {
// Remove unnecessary slash if need
path = [self stripSlashIfNeeded:path];
// Create generic beginning to file save path
NSMutableString *savePath = [[NSMutableString alloc] initWithFormat:@"%@/",[self applicationCachesDirectory].path];
if (subdirectory){
[savePath appendString:subdirectory];
[self createSubDirectory:[savePath copy]];
[savePath appendString:@"/"];
}
// Add requested save path
[savePath appendString:path];
NSError *error;
// Save the file and see if it was successful
BOOL ok = [fileString writeToFile:savePath atomically:NO encoding:NSUTF8StringEncoding error:&error];
if (error) NSLog(@"%@", error);
// Return status of file save
return ok;
}
+(BOOL)saveContentsOfStringToApplicationSupportDirectory:(NSString *)fileString withName:(NSString *)path andSubDirectory:(NSString *)subdirectory excludeFromBackUp:(BOOL)exclude {
// Remove unnecessary slash if need
path = [self stripSlashIfNeeded:path];
// Create generic beginning to file save path
NSMutableString *savePath = [[NSMutableString alloc] initWithFormat:@"%@/",[self applicationSupportDirectory].path];
if (subdirectory){
[savePath appendString:subdirectory];
[self createSubDirectory:[savePath copy]];
[savePath appendString:@"/"];
}
// Add requested save path
[savePath appendString:path];
NSError *error;
// Save the file and see if it was successful
BOOL ok = [fileString writeToFile:savePath atomically:NO encoding:NSUTF8StringEncoding error:&error];
if (error) NSLog(@"%@", error);
if (exclude) { [[NSURL URLWithString:savePath] setResourceValue:@YES
forKey:NSURLIsExcludedFromBackupKey
error:&error];}
if (error) NSLog(@"%@", error);
// Return status of file save
return ok;
}
#pragma mark - private methods
#pragma mark - directories
+ (NSURL *)applicationDocumentsDirectory {
NSString *documentsDirectory;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
if ([paths count] > 0) {
documentsDirectory = [paths objectAtIndex:0];
}
return [NSURL URLWithString:documentsDirectory];
}
+ (NSURL *)applicationLibraryDirectory {
NSString *libraryDirectory;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
if ([paths count] > 0) {
libraryDirectory = [paths objectAtIndex:0];
}
return [NSURL URLWithString:libraryDirectory];
}
+(NSURL *)applicationSupportDirectory {
NSString *applicationSupportDirectory;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES);
if ([paths count] > 0) {
applicationSupportDirectory = [paths objectAtIndex:0];
}
return [NSURL URLWithString:applicationSupportDirectory];
}
+(NSURL *)applicationTemporaryDirectory {
NSString *temporaryDirectory = NSTemporaryDirectory();
return [NSURL URLWithString:temporaryDirectory];
}
+(NSURL *)applicationCachesDirectory {
NSString *cachesDirectory;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
if ([paths count] > 0) {
cachesDirectory = [paths objectAtIndex:0];
}
return [NSURL URLWithString:cachesDirectory];
}
#pragma mark - strip slashes
+(NSString *)stripSlashIfNeeded:(NSString *)stringWithPossibleSlash {
// If the file name contains a slash at the beginning then we remove so that we don't end up with two
if ([stringWithPossibleSlash compare:@"/" options:NSLiteralSearch range:NSMakeRange(0, 1)]==NSOrderedSame) {
stringWithPossibleSlash = [stringWithPossibleSlash substringFromIndex:1];
}
// Return the string with no slash at the beginning
return stringWithPossibleSlash;
}
+(BOOL)createSubDirectory:(NSString *)subdirectoryPath {
NSError *error;
BOOL isDir;
BOOL exists = [[NSFileManager defaultManager] fileExistsAtPath:subdirectoryPath isDirectory:&isDir];
if (exists) {
/* a file of the same name exists, we don't care about this so won't do anything */
if (isDir) {
/* subdirectory already exists, don't create it again */
return YES;
}
}
BOOL success = [[NSFileManager defaultManager] createDirectoryAtPath:subdirectoryPath withIntermediateDirectories:YES attributes:nil error:&error];
if (error) NSLog(@"%@",error);
return success;
}
@end