Hi
I want to store GetCreationTime, GetLastAccessTime and GetLastWriteTime for each of the files I add to a zip file and then write those data to the files when extracted on a Windows based computer.
I found that to save the information, I can use NTTaggedData. I can create the object and set the properties, however I cannot figure out how to save the info to the ZipEntry object and how to extract them again during uncompression.
I am using VB.NET.
Dim ntTags As New NTTaggedData
ntTags.CreateTime = IO.File.GetCreationTime(sInput)
ntTags.LastAccessTime = IO.File.GetLastAccessTime(sInput)
ntTags.LastModificationTime = IO.File.GetLastWriteTime(sInput)