如何在Windows表面应用程序中查找文件是打开还是关闭

时间:2013-12-12 06:52:59

标签: windows c#-4.0 microsoft-metro

我使用此代码打开文件

await Windows.System.Launcher.LaunchFileAsync(fileToLaunch);

现在我必须检查文件是处于打开还是关闭模式。 请帮帮我。

1 个答案:

答案 0 :(得分:0)

我想你的意思是,如果启动实际工作,方法调用结果应该告诉你

Windows.System.Launcher.launchFileAsync(file, options).then(
      function (success) {
        if (success) {

        } else {

        }
      });

在此之后,您可能无法获得有关文件状态的信息。