I am using approach described in this answer to unzip a zip file into destination directory.
The problem I am having is, the files in destination folder (which are results of unzip) having the unzipped timestamp instead of the original "zipped" version file timestamp.
Any idea how can I retain the original timestamp?
Based on my research it seems, I might need to use something like os.Chtimes(...) function to reset the timestamp after file copy, which seems little bit cumbersome. Any suggestions?