mirror of
https://github.com/4sval/FModel.git
synced 2026-09-21 07:54:39 -05:00
fix
This commit is contained in:
@@ -208,7 +208,7 @@ public class ApplicationViewModel : ViewModel
|
||||
foreach (var entry in zip.Entries)
|
||||
{
|
||||
var entryPath = Path.Combine(zipDir, entry.FullName);
|
||||
await using var entryFs = File.OpenRead(entryPath);
|
||||
await using var entryFs = File.Create(entryPath);
|
||||
await using var entryStream = entry.Open();
|
||||
await entryStream.CopyToAsync(entryFs);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user