The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
26 views

Extract a zip file denied acess

im new here... sorry if i'm doing something wrong.. Im trying to extract a zip file to another location, and i'm getting denied acess error.. CODE: package org.spoutcraft.launcher; import ...
0
votes
2answers
44 views

Unzip a file in c# using 7z.exe

I'm trying to unzip a file from a winform application. I'm using this code : string dezarhiverPath = @AppDomain.CurrentDomain.BaseDirectory + "\\7z.exe"; ProcessStartInfo pro = new ...
1
vote
1answer
27 views

Can someone break my zip files passwords?

I have made a system that reads password protected zip files. Only my source code knows the password to unzip the file. But my question is: Is there any way that a person very interested in knowing ...
0
votes
0answers
19 views

Reading from uncompressed ZIP (Minizip)

I use zip files with no compression and I need to read the data with fread function (don't want to copy to a buffer using unzReadCurrentFile). When I use unzGetOffset I have strange numbers, such ...
0
votes
3answers
76 views

Unzip a file using ZipArchive in iOS sdk

I am using the following code to unzip a file using ZipArchive : NSString *zipDirectoryName = [sourceURL.lastPathComponent substringWithRange:NSMakeRange(0, sourceURL.lastPathComponent.length - ...
1
vote
1answer
40 views

ftp download completes, but unzip says otherwise

I ran into a bizzarre error on linux: I download a file using Net::FTP. Once get() method returns, I call the system unzip function: system("unzip -j $file"); the majority of the time, it ...
-2
votes
1answer
39 views

How to unzip multiple ziped file using batch file in windows [closed]

i need to download some zipped files via ftp from a remote server , and i need to unzip all the zipped files after i downloaded it from remote server in my local machine, so i need a sample batch file ...
0
votes
1answer
45 views

Perl reading zip files with IO::Uncompress::AnyUncompress

We are moving from our current build system (which is a mess) to one that uses Ant with Ivy. I'm cleaning up all the build files, and finding the jar dependencies. I thought it might be easier if I ...
1
vote
1answer
51 views

unzipping a file in classic asp

I'm trying to use an unzip/zip class. I need to unzip a zip file after upload. i modified "sleep" function to check "controller" function per intSeconds value and added "controller" function to check ...
4
votes
1answer
198 views

how to programmatically extract or unzip a .7z (7-zip) file with R

I'm trying to automate the extraction of a number of files compressed with 7-zip. I need to automate this process, because a) there are many years of data I'd like to unlock and b) I'd like to share ...
-1
votes
1answer
74 views

Extracting gzip files over the network [duplicate]

I am using R.2.15.2 on Windows 7 and I cannot unzip a .gz file stored on the network. I am also using gnuwin32 (if it helps) The file is seen, so the location is ok system("ls") file1.bla.gz ...
1
vote
2answers
178 views

How to Unzip all .Zip file from Folder using C# 4.0 and without using any OpenSource Dll?

I have a folder containing .ZIP files. Now, I want to Extract the ZIP Files to specific folders using C#, but without using any external assembly or the .Net Framework 4.5. I have searched, but not ...
0
votes
1answer
51 views

How to make a compressed file directly usable as a regular file?

We have a custom compressor for genomic data called CRAM, and althogugh it provides superior compression people are afraid to use it, because it is not-so-easy to handle with bioinformatic tools as ...
0
votes
3answers
62 views

PHP unzip string

I'm loading in a Google Drive spreadsheet via the API into PHP. The request returns the XLSX spreadsheet and I need to unzip it. To save me writing the response to a temporary and then calling, say, ...
0
votes
1answer
43 views

Invocation command using SSH getting failed?

As per project requirement, i need to check the content of zip file generated which been generated on remote machine.This entire activity is done using automation framework suites. which has been ...
0
votes
1answer
29 views

PHP Unzip function creating hidden system files

I have the below code (part of a function) that i run on my wordpress site. It works fine, but it also creates a system file (starting with a '.') for each file. This wouldn't normally be a problem ...
-1
votes
2answers
83 views

Unzip files in folders automatically [mac os x] [closed]

I have a folder on my desktop that has around 2500 folders in it, each folder has multiple files in them that are zipped, I can unzip them by manually clicking on them, is there a way to do this ...
0
votes
2answers
52 views

Why this 'syntax error' before 'else'?

I'm writing a shell script to unzip files in a directory. There are files with same name in different zip files; the code must keep the bigger one. I need to unzip files in /test directory. There are ...
0
votes
0answers
45 views

how to unzip file from dialog

Good morning, I make application which work with files in zip folder. I found some jsunzip library library for unzip files And have small problem, user select zip file from your computer. var ...
0
votes
2answers
31 views

Extracting a sub file from a zip file

I have a number of image files in a zip file (more than 50,000). How can I get a file through its name in a zip file without extracting the whole zip?
1
vote
1answer
26 views

Zip file with password, sent with a different extension

I received a zip file via email that was password protected. However, my email system was blocking the zip file type, so the sender changed the extension to something else. I saved the file and ...
0
votes
1answer
48 views

how to backup some of the existing files present before unzip

I have some folders which are zipped together. I want to unzip the folders to some location or different, but if there exists the same file in .zip then I want to make a back up of the file in some ...
0
votes
0answers
55 views

How to split or gather zip parts like 7zip with objective c?

I'd like to be able to gather all zip parts someone would send to me splitted file with 7 zip http://www.linglom.com/2008/10/12/how-to-split-a-large-file-using-7-zip/ What algorithm does 7zip use ? ...
0
votes
1answer
54 views

Improve my Unzip & Move function - PHP

I'm a PHP novice and so looking for some advice on a PHP function i have created to use within a Wordpress installation. As you can see from the code below, it runs when one of the admin's press ...
3
votes
2answers
158 views

ZipInputStream.getNextEntry returns null on some zip files

I have a simple code to extract zip files, it was working just fine as expected but during my test I tried my code with some zip files (fonts, icons and templates I downloaded from internet) just to ...
0
votes
1answer
31 views

What do you call an application that does not come with an installer?

what you call a software that requires no installation only unzipping like eclipse where it has no installation only we have to unzip and also for uninstalling just delete the Workspace.
1
vote
1answer
245 views

Decompress Gzip JSON response

I'm getting GZIP type compressed response from web-service. Can anyone please help me how to decompress or decode the response. Any help regarding this will be really helpful Thanks
1
vote
2answers
631 views

Android - Unzip SystemUI to modify the files within

So, I asked a question earlier today about a similar topic, and got my answer. But now I have another question... I've seen apps(rootbox is one of them) that can unzip your SystemUI.apk and then ...
0
votes
1answer
85 views

error when unzip apk file in ant

I use ant to unzip an apk file, but it occurred an error like this: <unzip src="test.apk" dest="testdir" > error message: java.lang.RuntimeException: data starting at 0 is in unknown format ...
0
votes
1answer
35 views

.__MAXOS folder when unziping (in context of XCode project)

I came across a problem when performing such a sequence of actions: Downloading xCode project from some tutorials website (.zip file) Extracting project (unzip ProjectName.zip) Opening extracted ...
0
votes
1answer
49 views

Simple solution to extract PDF.zip using PHP

I have a rather large zip file (I used 7zip to compress the files) and I must now extract the files that are on the server. I tried using CPANEL File Manager but the zip file is too big. Any ideas on ...
0
votes
0answers
118 views

Android- Cannot unzip files from sdcard

As the title states, I'm trying to unzip a file that has been copied on the sdcard. When I try, it creates the directory, but it will not extract. I will provide my code in a second. I also wanted to ...
0
votes
1answer
45 views

Batch File Replace Extracted File

I have a .bat file that unzips a kml from a kmz. If I run the batch file again it prompts me if I want to replace the file. Is there away I can have it always replace the file without prompting the ...
2
votes
0answers
74 views

R exdir does not exist error

I'm trying to download and extract a zip file using R. Whenever I do so I get the error message Error in unzip(temp, list = TRUE) : 'exdir' does not exist I'm using code based on the Stack ...
0
votes
0answers
41 views

Create ZIP from byte array [duplicate]

I am getting a byte array representing a ZIP file from the JSON response sent by a server, and on the Android side I want to recreate the ZIP from the array. I am using this code to achieve this but ...
0
votes
1answer
67 views

Grab github repo and unzip in temp dir

I'd like to be able to grab a github repo and unzip its contents to a temporary directory. I know there's functions that install_github in devtools but I'm not wanting to install, this is more ...
0
votes
1answer
102 views

Best library to unzip files in asp.net mvc3 and .net4.0 [closed]

I run .NET 4.0 and cannot change over to .NET4.5 so cannot use the line: Decompress.CopyTo(destinationDirectoryName); any good 3rd party libraries i can consider?? I need to unzip multiple files ...
0
votes
2answers
218 views

How to unzip a zip folder containing different file formats using Java

I need to unzip a zipped directory containing different files' format like .txt, .xml, .xls etc. I am able to unzip if the directory contains only .txt files but it fails with other files format. ...
0
votes
1answer
53 views

Namspace System.IO.Compression with class ZipFile

what am i missing? I have the namespace declared and then have this line in my controller: [HttpPost] public ActionResult Upload(ScormUploadViewModel model) { if (ModelState.IsValid) { if ...
2
votes
3answers
50 views

Why do I get a filename of ARRAY(0x7fd5c22f7cd8) when trying to unzip with Perl's Archive::Extract?

I'm using Perl 5.12 on Mac 10.5.7. I have a JAR file, that I wish to unzip, and then process a file matching a file pattern. I'm having trouble figuring out how to iterate over the results of ...
0
votes
1answer
81 views

How can I unzip an uploaded folder in Grails?

Can anyone help me how to unzip a folder in Grails? Right now I am able to copy the uploaded file into my web-app CSS folder. def uploadedFile = request.getFile('payload') ...
0
votes
1answer
170 views

I need to extract .tar.Z file using java

Do anyone have coding in java to extract .tar.Z files. Assume that i am having file called home.tar.Z I need extract this file using java code, can you give any sample code. Thanks
0
votes
1answer
95 views

Zip content of folder Java

I am trying to zip the content of the folder. Meaning when I unzip the zip I don't want to get the folder but the content of the folder. Content is various files and subfolder Problem: However when I ...
0
votes
1answer
244 views

How to unzip a password protected file in Android

I want to unzip a file which is password protected.. I know how to unzip for normal zip files which are not password protected. There are some apps like Winzip which does the same thing. Can you guys ...
2
votes
1answer
50 views

use pandas to retrieve files over FTP

I'm just getting to grips with pandas (which is awesome) and what I need to do is read in compressed genomics type files from ftp sites into a pandas dataframe. This is what I tried and got a ton of ...
0
votes
1answer
37 views

Adobe Air Desktop - Preventing from unzipping to get contents

I recently created an Adobe Air APP for PC that was an mp3 player. I want people to use my APP for many reasons. Then placed it on my website for download. SADLY Someone shared it on facebook and said ...
1
vote
1answer
78 views

file_put_contents in to new directory

I have the following code, which as you can see i use to create a new directory then unzip a file. <?php function unzip_to_s3() { // Set temp path $temp_path = ...
4
votes
3answers
154 views

Security of unzipping user submitted files

Not so much of a coding problem here, but a general question relating to security. I'm currently working on a project that allows user submitted content. A key part of this content is the user uploads ...
2
votes
3answers
199 views

Find all zips, and unzip in place - Unix

I have been trying for some time and believe I am fairly close to this, but I am fairly new to Unix so have been finding this difficult. I have a folder, containing many folders, some of which have ...
0
votes
0answers
13 views

How to write to log file and unzip in one transaction using the DTC

I would like to know how I can unzip files and write to log files in one transaction i.e. if an error get thrown in the middle of logging I want the files that were zipped and other log entries be ...

1 2 3 4 5 11