質問編集履歴
3
スペルミスの修正 FilesDir -> filesDir
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,13 +12,13 @@
|
|
12
12
|
|
13
13
|
//パターン1 -> アプリがクラッシュ
|
14
14
|
|
15
|
-
val fileDir = "$
|
15
|
+
val fileDir = "$filesDir/text.txt"
|
16
16
|
|
17
17
|
|
18
18
|
|
19
19
|
//パターン2 -> エラーメッセージ"Unresolved reference: context"
|
20
20
|
|
21
|
-
val fileDir = File(context.
|
21
|
+
val fileDir = File(context.filesDir,"text.txt")
|
22
22
|
|
23
23
|
```
|
24
24
|
|
2
誤字再修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
//パターン1 -> アプリがクラッシュ
|
14
14
|
|
15
|
-
val fileDir = "$FilesDir"
|
15
|
+
val fileDir = "$FilesDir/text.txt"
|
16
16
|
|
17
17
|
|
18
18
|
|
1
誤字修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Androidアプリをkotlinで開発しております。
|
2
2
|
|
3
|
-
ファイルパスを取得したく、以下の通り2通りの方法で
|
3
|
+
ファイルパスを取得したく、以下の通り2通りの方法で定義しても、パターン1はアプリがクラッシュ、パターン2はコーディングエラーが出ます。
|
4
4
|
|
5
5
|
それぞれの対処方法を教えて頂けないでしょうか?
|
6
6
|
|