如何在UWP vb.net中写入.txt文件

时间:2017-01-17 19:04:53

标签: .net vb.net uwp text-files

我正在尝试使用包含一行数字的.txt文件。我需要这个txt文件可由程序编辑并随之安装。 当需要更换号码时,.txt文件将被完全覆盖。

我该怎么做?所有其他教程都引用了C#或JS我需要vb.NET

1 个答案:

答案 0 :(得分:3)

请阅读UWP中有关与文件互动的Create, write, and read a file主题。

要将字符串写入StorageFile,请使用FileIO.WriteTextAsyncFileIO.AppendTextAsync函数

Dim file As StorageFile = Await ApplicationData.Current.LocalFolder.CreateFileAsync("file.txt", CreationCollisionOption.ReplaceExisting)
Dim strData As String = "sample text to write"
Await FileIO.WriteTextAsync(file, strData)