WinJs getFileAsync 没有先声明文件夹

WinJs getFileAsync without stating a folder first

我有一个文件路径字符串,我想获取该文件。到目前为止,我只发现了这个,它依赖于指定文件夹中的文件,或者这个文件夹的子文件夹。

var rootFolder = Windows.Storage.ApplicationData.current.localFolder;

rootFolder.getFileAsync('MY_FILE_PATH_FROM_ROOT').then(function (file) {

});

通过 rootFolder 指向安装应用程序的文件夹,例如 C:\Program Files....

如果我有一个类似于 C:\MyFiles\Picture\Pic_123.png 的文件路径字符串怎么办?我怎样才能得到这个文件?

抱歉,我是 WinJs 的新手。

一旦你看到 API 就有点简单了。使用

Windows.Storage.StorageFile.getFileFromPathAsync('YOUR_FILE_PATH')
    .then(function (file) {

    });