回答編集履歴
1
サンプルの追加
test
CHANGED
@@ -7,3 +7,79 @@
|
|
7
7
|
|
8
8
|
|
9
9
|
両方の設定を行えば、ファイルアプリから保存したデータが見えることは確認してみました。
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
###2020年10月9日追記
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
例えばですが、次のようなサンプルを実行すると、ファイルが作られているのを確認できています。
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
```Swift
|
22
|
+
|
23
|
+
import UIKit
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
class ViewController: UIViewController {
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
override func viewDidLoad() {
|
32
|
+
|
33
|
+
super.viewDidLoad()
|
34
|
+
|
35
|
+
// Do any additional setup after loading the view.
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
createFile(fileName: "testdata")
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
print("file saved")
|
44
|
+
|
45
|
+
}
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
func createFile(fileName : String){
|
52
|
+
|
53
|
+
let documentPath = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true).first!
|
54
|
+
|
55
|
+
let filePath = documentPath + "/" + fileName + ".csv"
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
let data = "1,2,3"
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
do {
|
64
|
+
|
65
|
+
try data.write(toFile: filePath, atomically: true, encoding: .utf8)
|
66
|
+
|
67
|
+
} catch {
|
68
|
+
|
69
|
+
print(error)
|
70
|
+
|
71
|
+
}
|
72
|
+
|
73
|
+
}
|
74
|
+
|
75
|
+
}
|
76
|
+
|
77
|
+
```
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
![イメージ説明](fc95737fbabcfdb48f77189a83880990.png)
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
![イメージ説明](7f36d4a14bbadc190e191e257edee132.png)
|