在我的 Windows 8 应用程序中有一个全局类,其中有一些静态属性,例如:
public class EnvironmentEx
{
public static User CurrentUser { get; set; }
//and some other static properties
//notice this one
public static StorageFolder AppRootFolder
{
get
{
return KnownFolders.DocumentsLibrary
.CreateFolderAsync("theApp", CreationCollisionOption.OpenIfExists)
.GetResults();
}
}
}
您可以看到我想在项目的其他地方使用应用程序根文件夹,因此我将其设为静态属性。在 getter 内部,我需要确保根文件夹存在,否则创建它。但这CreateFolderAsync
是一个异步方法,这里我需要一个同步操作。我试过GetResults()
了,但它抛出了一个InvalidOperationException
. 什么是正确的实现?(package.appmanifest 配置正确,文件夹实际上是创建的。)