我正在尝试使用包含一行数字的.txt文件。我需要这个txt文件可由程序编辑并随之安装。 当需要更换号码时,.txt文件将被完全覆盖。
我该怎么做?所有其他教程都引用了C#或JS我需要vb.NET
答案 0 :(得分:3)
请阅读UWP
中有关与文件互动的Create, write, and read a file主题。
要将字符串写入StorageFile
,请使用FileIO.WriteTextAsync
或FileIO.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)