7zip Questions
4
According to this link How do I create 7-Zip archives with .NET? , WOPR tell us how to compress a file with LMZA (7z compression algorithm) using 7z SDK ( http://www.7-zip.org/sdk.html )
using Sev...
Niggerhead asked 4/10, 2011 at 10:14
6
Solved
What is the command to unzip a file using 7z in powershell?
set-alias sz "$env:ProgramFiles\7-Zip\7z.exe"
sz x $zipfilePath $destinationUnzipPath -aoa -r;
The command works fine but it says no f...
Believe asked 24/3, 2017 at 11:44
8
Solved
I'm trying to use 7-Zip to backup some files inside a Powershell (v2) script.
I have:
$zipPath = "C:\Program Files\7-Zip\7z.exe"
[Array]$zipArgs = "-mx=9 a", "`"c:\BackupFolder\backup.zip`"", "`"...
Ketty asked 13/8, 2014 at 13:50
4
Solved
i'd like to zip everything except one file
7z a -tzip files.zip *
this will zip all the files in my current directory.. is there a way I can tell it to not zip one file or one file type ?
2
I have a .7z archive that I manage using 7zFM (File Manager) and I can easily add objects to this archive. However the objects in the archive are encrypted with AES like I want them to be, but when...
11
Solved
How can I extract about 900 7z files which are all located in the same folder (all have only one file inside) without doing it one by one?
I am using Ubuntu 10.10. All files are located in /home/...
5
Solved
I get the error "Not implemented".
I want to compress a file using 7-Zip via stdin then take the data via stdout and do more conversions with my application. In the man page it shows this example:...
5
Solved
How can I convert this settings into command?
Here are the results:
// Manual Compression (see the image above)
Compressed Size: 12,647,451 bytes
// Ultra
7z a -t7z Files.7z -mx9 -aoa
Compressed ...
Dromous asked 27/3, 2014 at 7:32
8
I'm creating a backup utility that zips all the files listed in a text file. I am using MS ACCESS as my front-end and 7-Zip for compression. These are the commands I am using:
7zG.exe a c:\Backup\...
Langlauf asked 2/9, 2009 at 8:5
3
I'm trying to create a tar file on windows using 7zip.
Most of the documents I found said to do something like this:
7z a -ttar -so dwt.tar dwt/
But when I tried to run it I got this error:
...
5
I need use 7zip in C#. Without console, just with 7zSharp.dll ?
+ I find some data here
http://7zsharp.codeplex.com/releases/view/10305 ,
but I don't know how to use it( - I could create .bat(.cm...
7
Solved
I use 7zip to create the SFX as follows:
7z.exe a -r archive.7z *
Then I do a binary copy with the 7zS.sfx file (used to create a self extracting installer), config file "build.config", and the ...
Hardman asked 29/7, 2013 at 11:55
7
How can I read and save the contents of 7z. I use Python 2.7.9, I can extract or Archive like this, but I can't read contents in python, I only listing the file's contents in CMD
import subprocess...
3
I need to open a compresed file (zml, i don't couldn't find information about that extension) like 7zip does it with java.
I have a zml file, if I open it with 7zip it asks me for the password, th...
Bobolink asked 29/6, 2016 at 17:2
3
I have been trying to extract an ISO image through 7zip and WinRar.
Here is the command line that I used:
7z x -y "%Isocontents%\ISO.iso" -o%Newfolder%
WinRar.exe x -y -ow "%Isocont...
2
Solved
I have this command:
7z e -oD:\Data\ODS_Source\* D:\Data\DATA_DROP\Source.zip
This results in D:\Data\ODS_Source\Source\<files>.<ext>
I need D:\Data\ODS_Source\<files>.<ext...
2
I have a number of zip files that I need to distribute to users, around 130 of them. Each zip file contains a number of similar text, html, xml, and jpg files. In total, the zip files total 146 meg...
5
I'm using 7z version 18.05 and I would like to list only filenames of an archive content.
If I use the command 7z l myArchive.7z i get this output:
7-Zip 18.05 (x64) : Copyright (c) 1999-2018 Igo...
12
Solved
How can I create 7-Zip archives from my C# console application? I need to be able to extract the archives using the regular, widely available 7-Zip program.
Here are my results with the examples...
Brawner asked 21/10, 2008 at 14:13
2
I'm using the following command to unzip a file:
"C:\Program Files\7-Zip\7z.exe" x "\\server\folder\backup.gz" -aoa "-o\\server\folder\"
I've been on the 7-zip help section and the examples for ...
Aryan asked 6/11, 2018 at 15:39
5
Solved
Problem: I would like to be able to extract tar.gz files in a single step. This makes my question almost identical to this one: Stack Overflow question for tar-gz.
My question is almost the s...
2
Solved
I'm trying to convert a folder of xml that was created by unzipping an excel file back into an excel .xlsx. But I get the error
The workbook cannot be opened or repaired by Microsoft Excel because...
2
I'm looking for a way to use python to extract multi-part zip files (eg blah.zip, blah.z01, blah.z02, blah.z03 etc) on Windows without any prerequisite installs (like 7zip). This question has been ...
3
I want to extract some files from a 7-zip byte stream,it can't be stored on hard disk,so I can't use RandomAccessFile class,I have read sevenzipjbinding source code,it also uncompresses the file wi...
Statued asked 20/2, 2014 at 3:7
13
Solved
I want to extract a 7-Zip archive in a Python script. It works fine except that it spits out the extraction details (which is huge in my case).
Is there a way to avoid this verbose information whi...
Efflorescent asked 22/9, 2010 at 23:9
1 Next >
© 2022 - 2024 — McMap. All rights reserved.