I have a directory with subdirectories. I want to unzip every .zip
file in this directory structure recursively and locally. (Unzip next to the .zip file)
For example:
.
├── A
│ ├── A2
│ │ └── content1.zip
│ ├── content2.zip
│ └── content3.zip
├── B
│ └── content4.zip
└── content5.zip
After unzip:
.
├── A
│ ├── A2
│ │ ├── content1.txt
│ │ └── content1.zip
│ ├── content2.txt
│ ├── content2.zip
│ ├── content3.txt
│ └── content3.zip
├── B
│ ├── content4.txt
│ └── content4.zip
├── content5.txt
└── content5.zip
I prefer if it's working both on linux and windows.