Johnny Wong
Johnny Wong
> 2.5还有这个问题吗? 目前用了两天, 暂未复现
uncompress zip, file extension is jpg
useless,the default setting is utf-8
what do u mean?set to encode.default?
ok,i will try that first,thx
y i can delete zip file after i uncompress it,but cant delete 7z file after i uncompress it?
```c# //zip uncompress and delete using (var archive = ZipArchive.Open(file)) { foreach (var entry in archive.Entries.Where(entry => !entry.IsDirectory)) { entry.WriteToDirectory(folder, new ExtractionOptions() { ExtractFullPath = true, Overwrite = true });...
sry,my copy wrong,RarArchive should be SevenZipArchive,the 7z file cant delete,i haven't test rar file
```c# using (var archive = SevenZipArchive.Open(file)) { foreach (var entry in archive.Entries.Where(entry => !entry.IsDirectory)) { entry.WriteToDirectory(folder, new ExtractionOptions() { ExtractFullPath = true, Overwrite = true }); } } File.Delete(file); ```...
I dont knw y,but same code is work 4 me today...sry abt that By the way,7z uncompress is too slow,250MB zip uncompress only need less 1 min,y 275MB 7z uncompress...