Sunday, February 28, 2021

How to extract long name files from zip



For u

nzip zip files that have more than 260 symbols,

 best solution is 7-Zip. it supports the file pathname more than 260 characters.
As per 7-zip sourceforge thread, it can supports pathnames up to 32,000 characters in length.

More details can be found on their release notes

9.32 alpha     2013-12-01
-------------------------
- Improved support for file pathnames longer than 260 characters.

No comments:

Post a Comment

How to get value from Map using Key in Java8

 In Java8, using below code can get value from Map using key: package com.puneet.java8examples; import java.util.HashMap; import java.u...