我有一个要尝试读入字符串(用于调试目的)的StorageFile对象。最简单的方法是什么?

最佳答案

在C#中:

string text = await Windows.Storage.FileIO.ReadTextAsync(storageFile);


在JavaScript中:

var text = Windows.Storage.FileIO.readTextAsync(storageFile).then(file => do_stuff(file))

09-25 15:29