0

B4A (または単に Visual Basic) で、ディレクトリを作成しました。
Files.MakeDir(Files.DirInternal, "app_data)
ただし、ファイルを読み込もうとすると、ディレクトリ/ファイルが存在しないというエラーが表示されます。
Files.ReadString(Files.DirInternal & "/app_data", "text.txt")

ファイルを読み取るためにディレクトリに移動する別の方法はありますか?

4

1 に答える 1

0

そのようなディレクトリが存在しない場合は、新しいディレクトリを作成します

pth = "d:\user_login"
        If Directory.Exists(pth) = False Then
            Directory.CreateDirectory(pth) 'create a folder in the path is no such folder is existing
End If
于 2014-07-23T13:27:08.543 に答える