Win8Metro中,我们不能在向以前那样调用WIN32的API函数来进行文件操作,因此,下面就来介绍一下Win8 Metro中文件的读写操作. 1 Windows 8 Metro Style App中文件的操作都包含在Windows.Storage命名空间中,其中 包括StorageFolder,StorageFile,FileIO等类库 . 2 Win8文件的读写操作都是 异步方式进行的,因此要使用async 3 创建文件: StorageFile storageFile=await Win…