質問編集履歴
1
correct grammar
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,13 +12,13 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
-
// Document
|
15
|
+
// Get fileURL of Document directory.
|
16
16
|
|
17
17
|
let documentDirectoryFileURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).last!
|
18
18
|
|
19
19
|
|
20
20
|
|
21
|
-
//csvStringArray
|
21
|
+
//csvStringArray contains String items which CSV files are made of.
|
22
22
|
|
23
23
|
for i in 0..<csvStringArray.count{
|
24
24
|
|
@@ -26,7 +26,7 @@
|
|
26
26
|
|
27
27
|
let csvData = csvStringArray[i]
|
28
28
|
|
29
|
-
|
29
|
+
|
30
30
|
|
31
31
|
let FilePath = documentDirectoryFileURL.appendingPathComponent(fileName)
|
32
32
|
|