xmlファイルに変更を加えた後、それらを保存するのに問題があります。私は今日一日中これを理解しようとして過ごしました、そして私はどこにも行きませんでした。
私はこのxmlドキュメントを持っています:
<?xml version=1.0" encoding="utf-8"?>
<content>
<weapon id="1234" name="blahblah">
<note info="blah blah" />
</weapon>
<weapon id="5678" name="blahblah2">
<note info="blah blah" />
</weapon>
</content>
これは私がこれまでに思いついたものであり、正確には機能しません(ファイルの読み取り方法を示すために編集):
FileOpenPicker openPicker = new FileOpenPicker();
openPicker.SuggestedStartLocation = Windows.Storage.Pickers.PickerLocationId.DocumentsLibrary;
openPicker.FileTypeFilter.Add(".xml");
StorageFile gfile = await openPicker.PickSingleFileAsync()
fileContent = await FileIO.ReadTextAsync(gfile, Windows.Storage.Streams.UnicodeEncoding.Utf8);
Xdocument xml = XDocument.Parse(fileContent);
xml.Descendants("weapon").Where(c => c.Attribute("id").Value.Equals("5678")).FirstorDefault().Remove();
IRandomAccessStream writeStream = await gfile.OpenAsync(FileAccessMode.ReadWrite);
Stream stream = writeStream.AsStreamForWrite();
xml.Save(stream);
結果のxmlドキュメントは次のようになります。
<?xml version=1.0" encoding="utf-8"?>
<content>
<weapon id="1234" name="blahblah">
<note info="blah blah" />
</content>apon>
<weapon id="5678" name="blahblah2">
<note info="blah blah" />
</weapon>
</content>
OpenAsyncにFileAccessMode.ReadWriteNoCopyOnWriteを使用しようとすると、ファイルは0バイトになります。
XDocument.Saveを使用しながら、このファイルを正しく書き込む方法を知っている人はいますか?