我使用此代码打开文件
await Windows.System.Launcher.LaunchFileAsync(fileToLaunch);
现在我必须检查文件是处于打开还是关闭模式。 请帮帮我。
答案 0 :(得分:0)
我想你的意思是,如果启动实际工作,方法调用结果应该告诉你
Windows.System.Launcher.launchFileAsync(file, options).then(
function (success) {
if (success) {
} else {
}
});
在此之后,您可能无法获得有关文件状态的信息。