Re: zip and rar files Programming Software Development by Ancient Dragon zip and rar files are compressed files which can not be easily read by any program other than the one that wrote them. If you want them uncompressed you would be better off just calling winzip to decompress them for you. WinZip is not free -- only trial version is free for a little while. Re: zip Programming Software Development by tinstaafl [Article](http://www.codeproject.com/Articles/28107/Zip-Files-Easy) about zip files. [Article](http://en.wikipedia.org/wiki/Resource_Description_Framework) about RDF specifications zip Programming Software Development by zakn how to open and edit RDF File in zip File in vb.net? Re: zip Programming Software Development by zakn thank. but, is there a way to edit RDF File in zip File without extract. Re: zip Programming Software Development by tinstaafl Since zip files are compressed you have to uncompress to see the real data inside. Using a memorystream should allow you to unzip in memory without writing to disk first. zip file extraction Programming Software Development by freesoft_2000 … created can unzip any zip files except the zip files created using my zip manager. My unzip manager…can list the contents of the zip file created with my zip manager in the list box …to extract the contents of the zip file created by my zip manager. I really don't …the function that lists the content of the zip file for clarity sake. Here is the … Zip files and PHP Programming Web Development by sacarias40 … and in the script put them into a zip file programatically. if this is possible could you…zipping with PHP. [url]http://us3.php.net/zip[/url] Here is an upload tutorial you may find…= $_POST['title']; $title .= '_' . rand(999999,time()) . '.zip'; echo $title; $zip = new ZipArchive; $pack = fopen($zip_dir.$title,'wb'); fclose($pack… zip code program Programming Software Development by jimjohnson123 …sum to get the final encoded digit for the zip code.... Here is an example table bar code…have two constructors. The first constructor should input the zip code as an integer, and the second constructor … productOfDigit2, productOfDigit3, productOfDigit4, productOfDigit5); cout << "The zip code is: " << endl; cin >>… Re: Zip files and PHP Programming Web Development by Will Gresham …code=php] <?php $zip = new ZipArchive(); $filename = "./test112.zip"; if ($zip->open($filename, ZIPARCHIVE::CREATE)!==…;cannot open <$filename>\n"); } $zip->addFromString("testfilephp.txt" . time(), "… string added as testfilephp.txt.\n"); $zip->addFromString("testfilephp2.txt" . time… Re: Zip code locator issues Programming Web Development by pickett65 …)) { // Separate closest stores $distance = Dist ($row['lat'], $row['lon'], $zip['lat'], $zip['lon']); $preSpecialties = $row['specialties']; $preDoor=explode (';',$preSpecialties); // Check if store… Re: Zip code locator issues Programming Web Development by pickett65 …'])) { // Validate Zip code field if (!empty ($_POST['zip']) && is_numeric ($_POST['zip'])) { $z = (int)$_POST['zip']; // Verify zip code exists $query …// Separate closest stores $distance = Dist ($row['lat'], $row['lon'], $zip['lat'], $zip['lon']); $preSpecialties = $row['specialties']; $preDoor=explode (';',$preSpecialties); // if… Zip Command Error Programming Software Development by Ismatus3 …de la sauvegarde That means that this part : zip_command = "zip -qr {0} {1}".format(target, ' '.join(source))…repertoire # 3. Les fichiers sont places dans une archive zip. # 4. Le jour courant est le nom du…# L'heure courante est le nom de l'archive zip now = time.strftime('%H%M%S') # Creer le… Re: Zip files and PHP Programming Web Development by sacarias40 …_POST['title']; $title .= '_' . rand(999999,time()) . '.zip'; echo $title; $zip = new ZipArchive; if(!$zip->open($zip_dir.$title, ZIPARCHIVE::CREATE)) { echo 'Couldnt… creat file'; }else { $zip->addFile($license, 'newfile.txt'); $zip->close(); } } ?> <form enctype="… Re: Zip files and PHP Programming Web Development by blur0224 …know about zipping with PHP. [url]http://us3.php.net/zip[/url] Here is an upload tutorial you may find helpful…, then add the two files, and finally send it to zip. Good luck! [QUOTE=sacarias40;872436]I was wondering if it…text file and in the script put them into a zip file programatically. if this is possible could you offer some… Re: Zip Command Error Programming Software Development by Schol-R-LEA ….html), but rather calls on a separate program named 'zip' to perform the file operations. That is both unnecessary … how it would work using the `zipfile` module: import zipfile zip = zipfile.ZipFile(target, 'w') Now, to get the desired… and source is the archive's base directory make_archive(target, 'zip', '.', source) Re: zip code program Programming Software Development by jimjohnson123 …(productOfDigit1, productOfDigit2, productOfDigit3, productOfDigit4, productOfDigit5); cout << "The zip code is: " << endl; cin >> productOfDigit1… Re: zip code program Programming Software Development by VernonDozier … information is outputted here: [code] cout << "The zip code is: " << endl; cin >> productOfDigit1… Zip files by date Programming Software Development by joinup … the script enter into a directory, see all directories, and zip the files by date ( the script is for managment of…i need the script reads "*0902*" create a zip with that name and everything that have *0902* goes …into the zip, so script will zip files by month, and do that recursivelly. Help :) Zip file not extracting correctly Hardware and Software Linux and Unix by mariko …with a bunch of folders. I put and extracted other zip files into the folders I just mentioned. Then, I …ePSXe.exe or /home/amber/Desktop/Game/ePSXe/ePSXe.exe.zip, and cannot find /home/amber/Desktop/Game/ePSXe/ePSXe.exe….ZIP, period. Did my zip file not extract correctly? I am a total… Re: Zip code locator issues Programming Web Development by pickett65 … here: [URL="http://ascher.cowtowntest.com/zip-code-test/"]Zip Code Test[/URL] Any other ideas? Here …{ // Separate closest stores $distance = Dist ($row['lat'], $row['lon'], $zip['lat'], $zip['lon']); $preSpecialties = $row['specialties']; $preDoor=explode (';',$preSpecialties); // if(in_array… Re: Zip Command Error Programming Software Development by TrustyTony With lines 13 and 18 like you have I doubt that it would work even in ubuntu, either use standard module like I suggested or install command line zip in Windows computer. Re: Zip Code Field not being Saved to DB Correctly Programming Web Development by JorgeM …an interger either. The information in a zip code isnt going to be used in… any type of arithmetic. The zip just happens to be using numbers as its …characters. I'd store the zip in char (if you are absolutely sure of… length) or varchar (if you are collecting zip codes from different regions that may have different lengths… ZIP Script modified - Help Programming Software Development by joinup … , I got this script that read directories, create a zip file with the date of the file, and put all …files in that date inside Zip: dir=/iscsi/webserver231/; for subdir in "$dir"/*/; do… f -name "ex${date}??.log" -exec zip -m "${subdir}/${date}.zip" {} +; done; done This script is made to… Zip Codes Programming Web Development by CFROG … $key => $value) {}[/icode] with $key being the zip code and $value being the distance. This works just fine…I want. I would like to take the resulting zip codes ($key) in this case and run it through…key => $value) {} $sql="SELECT * FROM users WHERE zip='$key'"; //<-- Just an example $res=mysql_query($sql)or… Zip hierarchy Programming Software Development by kingofkya …): if start <= picId and picId <= end: zip.write(filedir+'/'+pathname) zip.close() [/CODE] what i am trying [CODE] zipFile = zipfile…;= picId and picId <= end: fileObj = open (filedir+'/'+pathname) zip.write(fileObj) zip.close() [/CODE] Am i on the right track if… ZIP code + 4 validation using graphs Programming Software Development by emko … a graph based program that will validate a zip code given an expression to match eg. ddddd…bool visited[]); }; void graph::createGraph() { int index; string zip; int vertex; int adjacentVertex; if(gSize != 0) clearGraph();… cout << "Enter Zip Code + 4: "; cin >> zip; cout << endl; } void… Zip code locator issues Programming Web Development by pickett65 … in a 20 mile radius of a given zip code. That part works fine. I am …the store is within 20 miles of the zip code. I have tried every operator i …Separate closest stores $distance = Dist ($row['lat'], $row['lon'], $zip['lat'], $zip['lon']); $preSpecialties = $row['specialties']; $preDoor=explode (';',$preSpecialties); $i=… Re: Zip hierarchy Programming Software Development by jice I don't think so : zip.write waits for a file NAME and you pass a … may be done by using the second argument of zip.write : [CODE] zip.write(filename, arcname=None, compress_type=None) # filename = the file… Zip files, move files, delete source (help me please) Programming Software Development by MrRx7 …/demos/ #copying directory FORMAT=tar cvf EXTENSION=tar #FORMAT=zip #Compression using ZIP #EXTENSION=zip #Associated extension cd $HLDS for files in `ls… zip files instead of jar Programming Software Development by wrappingduke Hello, Attempting to run java app from zip file rather than jar but having some difficulty. I have …placed all the classes for the app in the zip. The files not are compressed. Here's a sample of…\jsr169.jar" -Djava.class.path="\Storage Card\Myclasses.zip" Main 'Error rec'v java.lang.NoClassDefFoundError: Main (wrong…