-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathFileSystemManager.swift
358 lines (297 loc) · 11.4 KB
/
FileSystemManager.swift
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
//
// FileSystemManager.swift
// iOS File Management
//
// Created by Andrew L. Jaffee on 4/20/18.
//
/*
Copyright (c) 2018 Andrew L. Jaffee, microIT Infrastructure, LLC, and iosbrain.com.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
import Foundation
enum AppDirectories : String
{
case Documents = "Documents"
case Inbox = "Inbox"
case Library = "Library"
case Temp = "tmp"
}
protocol AppDirectoryNames
{
func documentsDirectoryURL() -> URL
func inboxDirectoryURL() -> URL
func libraryDirectoryURL() -> URL
func tempDirectoryURL() -> URL
func getURL(for directory: AppDirectories) -> URL
func buildFullPath(forFileName name: String, inDirectory directory: AppDirectories) -> URL
} // end protocol AppDirectoryNames
extension AppDirectoryNames
{
func documentsDirectoryURL() -> URL
{
return FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first!
//return FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0]
}
func inboxDirectoryURL() -> URL
{
return FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0].appendingPathComponent(AppDirectories.Inbox.rawValue) // "Inbox")
}
func libraryDirectoryURL() -> URL
{
return FileManager.default.urls(for: FileManager.SearchPathDirectory.libraryDirectory, in: .userDomainMask).first!
}
func tempDirectoryURL() -> URL
{
return FileManager.default.temporaryDirectory
//urls(for: .documentDirectory, in: .userDomainMask)[0].appendingPathComponent(AppDirectories.Temp.rawValue) //"tmp")
}
func getURL(for directory: AppDirectories) -> URL
{
switch directory
{
case .Documents:
return documentsDirectoryURL()
case .Inbox:
return inboxDirectoryURL()
case .Library:
return libraryDirectoryURL()
case .Temp:
return tempDirectoryURL()
}
}
func buildFullPath(forFileName name: String, inDirectory directory: AppDirectories) -> URL
{
return getURL(for: directory).appendingPathComponent(name)
}
} // end extension AppDirectoryNames
protocol AppFileStatusChecking
{
func isWritable(file at: URL) -> Bool
func isReadable(file at: URL) -> Bool
func exists(file at: URL) -> Bool
}
extension AppFileStatusChecking
{
func isWritable(file at: URL) -> Bool
{
if FileManager.default.isWritableFile(atPath: at.path)
{
print(at.path)
return true
}
else
{
print(at.path)
return false
}
}
func isReadable(file at: URL) -> Bool
{
if FileManager.default.isReadableFile(atPath: at.path)
{
print(at.path)
return true
}
else
{
print(at.path)
return false
}
}
func exists(file at: URL) -> Bool
{
if FileManager.default.fileExists(atPath: at.path)
{
return true
}
else
{
return false
}
}
} // end extension AppFileStatusChecking
protocol AppFileSystemMetaData
{
func list(directory at: URL) -> Bool
func attributes(ofFile atFullPath: URL) -> [FileAttributeKey : Any]
}
extension AppFileSystemMetaData
{
func list(directory at: URL) -> Bool
{
let listing = try! FileManager.default.contentsOfDirectory(atPath: at.path)
if listing.count > 0
{
print("\n----------------------------")
print("LISTING: \(at.path)")
print("")
for file in listing
{
print("File: \(file.debugDescription)")
}
print("")
print("----------------------------\n")
return true
}
else
{
return false
}
}
func attributes(ofFile atFullPath: URL) -> [FileAttributeKey : Any]
{
return try! FileManager.default.attributesOfItem(atPath: atFullPath.path)
}
} // end extension AppFileSystemMetaData
protocol AppFileManipulation : AppDirectoryNames
{
func writeFile(containing: String, to path: AppDirectories, withName name: String) -> Bool
func readFile(at path: AppDirectories, withName name: String) -> String
func deleteFile(at path: AppDirectories, withName name: String) -> Bool
func renameFile(at path: AppDirectories, with oldName: String, to newName: String) -> Bool
func moveFile(withName name: String, inDirectory: AppDirectories, toDirectory directory: AppDirectories) -> Bool
func copyFile(withName name: String, inDirectory: AppDirectories, toDirectory directory: AppDirectories) -> Bool
func changeFileExtension(withName name: String, inDirectory: AppDirectories, toNewExtension newExtension: String) -> Bool
}
extension AppFileManipulation
{
func writeFile(containing: String, to path: AppDirectories, withName name: String) -> Bool
{
let filePath = getURL(for: path).path + "/" + name
let rawData: Data? = containing.data(using: .utf8)
return FileManager.default.createFile(atPath: filePath, contents: rawData, attributes: nil)
}
func readFile(at path: AppDirectories, withName name: String) -> String
{
let filePath = getURL(for: path).path + "/" + name
let fileContents = FileManager.default.contents(atPath: filePath)
let fileContentsAsString = String(bytes: fileContents!, encoding: .utf8)
print(fileContentsAsString!)
return fileContentsAsString!
}
func deleteFile(at path: AppDirectories, withName name: String) -> Bool
{
let filePath = buildFullPath(forFileName: name, inDirectory: path)
try! FileManager.default.removeItem(at: filePath)
return true
}
func renameFile(at path: AppDirectories, with oldName: String, to newName: String) -> Bool
{
let oldPath = getURL(for: path).appendingPathComponent(oldName)
let newPath = getURL(for: path).appendingPathComponent(newName)
try! FileManager.default.moveItem(at: oldPath, to: newPath)
// highlights the limitations of using return values
return true
}
func moveFile(withName name: String, inDirectory: AppDirectories, toDirectory directory: AppDirectories) -> Bool
{
let originURL = buildFullPath(forFileName: name, inDirectory: inDirectory)
let destinationURL = buildFullPath(forFileName: name, inDirectory: directory)
// warning: constant 'success' inferred to have type '()', which may be unexpected
// let success =
try! FileManager.default.moveItem(at: originURL, to: destinationURL)
return true
}
func copyFile(withName name: String, inDirectory: AppDirectories, toDirectory directory: AppDirectories) -> Bool
{
let originURL = buildFullPath(forFileName: name, inDirectory: inDirectory)
let destinationURL = buildFullPath(forFileName: name+"1", inDirectory: directory)
try! FileManager.default.copyItem(at: originURL, to: destinationURL)
return true
}
func changeFileExtension(withName name: String, inDirectory: AppDirectories, toNewExtension newExtension: String) -> Bool
{
var newFileName = NSString(string:name)
newFileName = newFileName.deletingPathExtension as NSString
newFileName = (newFileName.appendingPathExtension(newExtension) as NSString?)!
let finalFileName:String = String(newFileName)
let originURL = buildFullPath(forFileName: name, inDirectory: inDirectory)
let destinationURL = buildFullPath(forFileName: finalFileName, inDirectory: inDirectory)
try! FileManager.default.moveItem(at: originURL, to: destinationURL)
return true
}
} // end extension AppFileManipulation
struct AppFile : AppFileManipulation, AppFileStatusChecking, AppFileSystemMetaData
{
let fileName: String
init(fileName: String)
{
self.fileName = fileName
}
init()
{
fileName = "N/A"
}
func moveToDocuments()
{
_ = moveFile(withName: fileName, inDirectory: .Inbox, toDirectory: .Documents)
}
func deleteTempFile()
{
_ = deleteFile(at: .Temp, withName: fileName)
}
func write() -> Bool
{
_ = writeFile(containing: "This file was written on 5/23/18.\n\nThis file should show up in the Files app.", to: .Documents, withName: "myFileApp.txt")
//writeFile(containing: "We were talking\nAbout the space\nBetween us all", to: .Documents, withName: "karma.txt")
// writeFile(containing: "And the people\nWho hide themselves\nBehind a wall", to: .Documents, withName: "dharma.txt")
return true
}
func list() -> Bool
{
return list(directory: getURL(for: .Documents))
}
func getAttribs()
{
let attribs = attributes(ofFile: buildFullPath(forFileName: "karma.txt", inDirectory: .Documents))
for (key, value) in attribs
{
print("\(key) value is \(value)")
}
}
/*
func delete()
{
deleteFile(at: .Documents, withName: "karma.txt")
}
func read()
{
readFile(at: .Documents, withName: "text2.txt")
}
func list() -> Bool
{
return list(directory: getURL(for: .Documents))
}
func rename()
{
renameFile(at: .Documents, with: "text2.txt", to: "karma.txt")
}
func move()
{
// moveFile(withName: "text2.txt", inDirectory: .Temp, toDirectory: .Documments) WORKS
moveFile(withName: "text2.txt", inDirectory: .Inbox, toDirectory: .Documents)
}
func copy() -> Bool
{
return copyFile(withName: "karma", inDirectory: .Documents, toDirectory: .Documents)
}
func doesExist() -> Bool
{
return exists(file: buildFullPath(forFileName: "karma.txt", inDirectory: .Documents))
}
func getAttribs()
{
let attribs = attributes(ofFile: buildFullPath(forFileName: "karma.txt", inDirectory: .Documents))
for (key, value) in attribs
{
print("\(key) value is \(value)")
}
}
func changeExtension()
{
changeFileExtension(withName: "text1.txt", inDirectory: .Documents, toNewExtension: "html")
}
*/
}