-1
這是用C++/winRT編寫的,它最終將取代C++/CX。 以下3行代碼先於 OpenSequentialWriteAsync()
的請求。但唉,沒有這樣的命令,只有 OpenSequentialReadAsync()
。在StorageFile上找不到OpenSequentialWriteAsync()方法
是否存在不允許創建順序文件的原因?
StorageFolder _storageFolder = ApplicationData::Current().LocalFolder();
StorageFolder _turboCalc = co_await _storageFolder.CreateFolderAsync(L"TurboCalc", CreationCollisionOption::OpenIfExists); //create sub folder in folder
StorageFile _storageFile = co_await _turboCalc.CreateFileAsync(L"FileDoubles.dbo", CreationCollisionOption::ReplaceExisting); //create file in sub folder
我投票結束這個問題作爲題外話,因爲要求基於對系統工作原理的誤解不會對任何人有所幫助。 (預讀緩存不是寫入文件的有意義的優化。) – IInspectable