vb.net - ZipFile.OpenRead, Error: There is not enough space on the disk -
i using .net 4.5 framework decompress zip files. decompressing zip files 265 megs, decompress 400 500 megs getting .net error - there not enough space on disk.
there plenty of disk space, curious if else has had issue or have advise - note: have considered server issue , not code.
my code straight forward posting in case sees anything. following in vb.net.
using archive ziparchive = zipfile.openread(file) each entry ziparchiveentry in archive.entries entry.extracttofile(fullpath & "\" & entry.fullname, true) fi = new fileinfo(fullpath & "\" & entry.fullname) logentries.add(fi.length & vbtab & fi.lastwritetime.date & vbtab & fi.lastwritetime.hour.tostring("00") & ":" & fi.lastwritetime.minute.tostring("00") & vbtab & fi.name) totallength = totallength + fi.length next end using thanks.
Comments
Post a Comment