有人有 VB 代码来模拟 Windows Store 的 Streamwriter 吗?
我知道它已被 StorageFolder 类取代,但 MSDN 中没有 VB 示例,我似乎无法从 c# 示例中正确翻译。任何帮助,将不胜感激。我只是想将文本(CSV)写入文件并将其保存到文档文件夹中。在下面的代码中,当我尝试调暗流写入器时,windows store 想要一个流而不是 strPath。(也一直在玩pickerdialog,但这可能是下一个障碍)。
Dim strpath As String = Windows.Storage.Pickers.PickerLocationId.DocumentsLibrary & "\" & strFileName
'Build String for file*******************
Dim swExport As StreamWriter = New StreamWriter(strpath)
swExport.Flush()
For x = 0 To intCount - 1
strLine = "WriteSomeText"
swExport.WriteLine(strLine)
Next x