zip files mac
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 10557
File::Spec::Mac 3.25
File::Spec::Mac Perl module contains File::Spec for Mac OS (Classic). more>>
SYNOPSIS
require File::Spec::Mac; # Done internally by File::Spec if needed
Methods for manipulating file specifications.
METHODS
canonpath
On Mac OS, theres nothing to be done. Returns what its given.
catdir()
Concatenate two or more directory names to form a path separated by colons (":") ending with a directory. Resulting paths are relative by default, but can be forced to be absolute (but avoid this, see below). Automatically puts a trailing ":" on the end of the complete path, because thats whats done in MacPerls environment and helps to distinguish a file path from a directory path.
IMPORTANT NOTE: Beginning with version 1.3 of this module, the resulting path is relative by default and not absolute. This decision was made due to portability reasons. Since File::Spec->catdir() returns relative paths on all other operating systems, it will now also follow this convention on Mac OS. Note that this may break some existing scripts.
The intended purpose of this routine is to concatenate directory names. But because of the nature of Macintosh paths, some additional possibilities are allowed to make using this routine give reasonable results for some common situations. In other words, you are also allowed to concatenate paths instead of directory names (strictly speaking, a string like ":a" is a path, but not a name, since it contains a punctuation character ":").
So, beside calls like
catdir("a") = ":a:"
catdir("a","b") = ":a:b:"
catdir() = "" (special case)
calls like the following
catdir(":a:") = ":a:"
catdir(":a","b") = ":a:b:"
catdir(":a:","b") = ":a:b:"
catdir(":a:",":b:") = ":a:b:"
catdir(":") = ":"
are allowed.
Download (0.11MB)
Added: 2007-07-05 License: Perl Artistic License Price:
842 downloads
Zipios++ 0.1.5
Zipios++ is a java.util.zip-like C++ library for reading and writing Zip files. more>>
Zipios++ project is a java.util.zip-like C++ library for reading and writing Zip files. Access to individual entries is provided through standard C++ iostreams. A simple read-only virtual file system that mounts regular directories and zip files is also provided.
Spanned archives are not supported, and support is not planned.
The library has been tested and appears to be working with:
FreeBSD stable and current / gcc 2.95.3
Red Hat Linux release 7.0 / gcc 2.96
Red Hat Linux release 6.2 (Zoot) / egcs-2.91.66
Linux Mandrake release 7.0 (Air) / gcc 2.95.2
SGI IRIX64 6.5 / gcc 2.95.2
SGI IRIX64 6.5 / MIPSpro Compilers: Version 7.30
Zip file access:
The two most important classes are ZipFile and ZipInputStream. ZipInputStream is an istream for reading zipfiles. It can be instantiated directly, without the use of ZipFile. A new ZipInputStream reads from the first entry, and the user can skip to the next entry by calling ZipInputStream::getNextEntry().
ZipFile scans the central directory of a zipfile and provides an interface to access that directory. The user may search for entries with a particular filename using ZipFile::getEntry(), or simply get the complete list of entries with ZipFile::entries(). To get an istream (ZipInputStream) to a particular entry simply use ZipFile::getInputStream().
example_zip.cpp demonstrates the central elements of Zipios++.
A Zip file appended to another file, e.g. a binary program, with the program appendzip, can be read with ZipFile::openEmbeddedZipFile().
<<lessSpanned archives are not supported, and support is not planned.
The library has been tested and appears to be working with:
FreeBSD stable and current / gcc 2.95.3
Red Hat Linux release 7.0 / gcc 2.96
Red Hat Linux release 6.2 (Zoot) / egcs-2.91.66
Linux Mandrake release 7.0 (Air) / gcc 2.95.2
SGI IRIX64 6.5 / gcc 2.95.2
SGI IRIX64 6.5 / MIPSpro Compilers: Version 7.30
Zip file access:
The two most important classes are ZipFile and ZipInputStream. ZipInputStream is an istream for reading zipfiles. It can be instantiated directly, without the use of ZipFile. A new ZipInputStream reads from the first entry, and the user can skip to the next entry by calling ZipInputStream::getNextEntry().
ZipFile scans the central directory of a zipfile and provides an interface to access that directory. The user may search for entries with a particular filename using ZipFile::getEntry(), or simply get the complete list of entries with ZipFile::entries(). To get an istream (ZipInputStream) to a particular entry simply use ZipFile::getInputStream().
example_zip.cpp demonstrates the central elements of Zipios++.
A Zip file appended to another file, e.g. a binary program, with the program appendzip, can be read with ZipFile::openEmbeddedZipFile().
Download (0.15MB)
Added: 2006-08-15 License: LGPL (GNU Lesser General Public License) Price:
1168 downloads
PloneFilesZip 1.1.0 RC2
PloneFilesZip allows your visitor download the files and images from folders in a single ZIP file. more>>
PloneFilesZip allows your visitor download the files and images from folders in a single ZIP file.
loneFilesZip provides a new document action in all folderish contents (ATFolder, ...) that let the user download files (and images) contained in the fields of any AT based content (ATContentTypes and others) in that folder.
PloneFilesZip works - out of the box - with any content type which schema has a FileField, an ImageField or any field that acts like a FileField, as the AttachmentField.
Customizing (site manager)
.Choose the content types that can profide files to the user among compatible types.
.Add Dublin Core information (RDF formatted) about the contents in the ZIP archive.
.Tweak the condition/permission to let the user download.
.Customizing (content type developers)
Some content types have schemas that do not "show" the compatible fields through the standard AT API. In order to let these content types provides files in a ZIP archive, developers can add type adapter classes in the PloneFilesZip types registry. An adapter for PloneArticle is less than 20 Python lines.
Some custom field types may provide files. In order to let the content types built with such fields provide files to a ZIP archive, developers can add field adapter classes in the PloneFilesZip fields registry.
Enhancements:
- Fix a bug in file retrieving. Append arg (full=True) while creating BaseUnit to make sure we get the entire file and not a chunk file
- Fix a bug on DeepZipStructurePolicy:getZipFilePath (add **kwargs on method)
<<lessloneFilesZip provides a new document action in all folderish contents (ATFolder, ...) that let the user download files (and images) contained in the fields of any AT based content (ATContentTypes and others) in that folder.
PloneFilesZip works - out of the box - with any content type which schema has a FileField, an ImageField or any field that acts like a FileField, as the AttachmentField.
Customizing (site manager)
.Choose the content types that can profide files to the user among compatible types.
.Add Dublin Core information (RDF formatted) about the contents in the ZIP archive.
.Tweak the condition/permission to let the user download.
.Customizing (content type developers)
Some content types have schemas that do not "show" the compatible fields through the standard AT API. In order to let these content types provides files in a ZIP archive, developers can add type adapter classes in the PloneFilesZip types registry. An adapter for PloneArticle is less than 20 Python lines.
Some custom field types may provide files. In order to let the content types built with such fields provide files to a ZIP archive, developers can add field adapter classes in the PloneFilesZip fields registry.
Enhancements:
- Fix a bug in file retrieving. Append arg (full=True) while creating BaseUnit to make sure we get the entire file and not a chunk file
- Fix a bug on DeepZipStructurePolicy:getZipFilePath (add **kwargs on method)
Download (0.12MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
976 downloads
jsp File Browser 1.2
jsp File Browser is an easy to use and easy to install file browser java server page. more>>
jsp File Browser is an easy to use and easy to install file browser java server page. This JSP program allows remote web-based file access and manipulation.
Main features:
- Create, copy, move, rename and delete files and directories
- View Files (pictures, movies, pdf, html,...)
- Edit textfiles
- Upload files to the server (Status via Upload monitor)
- Download files from the server
- Download groups of files and folders as a single zip file that is created on the fly
- Execute native commands on the server (e.g ls, tar, chmod,...)
- View entries and unpack zip, jar, war and gz files on the server
- Just one file, very easy to install (in fact, just copy it to the server)
- Customizable layout via css file
- Restrict file access via black or whitelist
It should work with any JSP1.1 compatible server(e.g. Tomcat>=3.0), I tested it on Tomcat 4.0, Resin 2.1.7 and Jetty.
Enhancements:
- A read-only version was added.
- It is now also usable as an upload-center.
- Some UI enhancements were made, like shortkeys and a better layout.
- It should also load a bit faster.
<<lessMain features:
- Create, copy, move, rename and delete files and directories
- View Files (pictures, movies, pdf, html,...)
- Edit textfiles
- Upload files to the server (Status via Upload monitor)
- Download files from the server
- Download groups of files and folders as a single zip file that is created on the fly
- Execute native commands on the server (e.g ls, tar, chmod,...)
- View entries and unpack zip, jar, war and gz files on the server
- Just one file, very easy to install (in fact, just copy it to the server)
- Customizable layout via css file
- Restrict file access via black or whitelist
It should work with any JSP1.1 compatible server(e.g. Tomcat>=3.0), I tested it on Tomcat 4.0, Resin 2.1.7 and Jetty.
Enhancements:
- A read-only version was added.
- It is now also usable as an upload-center.
- Some UI enhancements were made, like shortkeys and a better layout.
- It should also load a bit faster.
Download (0.023MB)
Added: 2006-07-24 License: GPL (GNU General Public License) Price:
1211 downloads
FileLister 0.5.1
FileLister is a web-based frontend for searching an indexed filesystem. more>>
FileLister is an file system indexing tool with a web based front-end. Running platform independently in a web environment, its goal is to easily find files in large archives, using a rich set of search configuration options.
Additionally, you may download single files or even create and download zip files on the fly from the results of your search.
Main features:
- Simple / Advanced Search modes
- Substring, case-sensitive/-insensitive, exact, regular expressions search
- Search within the whole index tree or within parts of it only
- Search by size, modification date, file/folder/all; sort order definition
- Choice between searching the index or directly on disk
- Search again / Search within results modes
- Column resorting, results navigation, definition of results-per-site count
- Dynamic results caching
- Creation of links for both files and directories for direct download from results view
- Generation and download of zip files created out of the results
- Indexing tool which is configurable as cron job / scheduled task
- Graphical configuration tool for the definition of the application settings, including out-of-the-tool JDBC testing part
- Dynamic reload of modified application settings
- Possibility to define a virtual root directory to be indexed: Ideal tool for searching e.g. a software archive
- Open Source (GPL licensed)
Technologies used:
- J2SDK / Swing
- Java Servlets API / JSP
- MySQL RDBMS / JDBC
- Xerces XML
- JavaScript / CSS
<<lessAdditionally, you may download single files or even create and download zip files on the fly from the results of your search.
Main features:
- Simple / Advanced Search modes
- Substring, case-sensitive/-insensitive, exact, regular expressions search
- Search within the whole index tree or within parts of it only
- Search by size, modification date, file/folder/all; sort order definition
- Choice between searching the index or directly on disk
- Search again / Search within results modes
- Column resorting, results navigation, definition of results-per-site count
- Dynamic results caching
- Creation of links for both files and directories for direct download from results view
- Generation and download of zip files created out of the results
- Indexing tool which is configurable as cron job / scheduled task
- Graphical configuration tool for the definition of the application settings, including out-of-the-tool JDBC testing part
- Dynamic reload of modified application settings
- Possibility to define a virtual root directory to be indexed: Ideal tool for searching e.g. a software archive
- Open Source (GPL licensed)
Technologies used:
- J2SDK / Swing
- Java Servlets API / JSP
- MySQL RDBMS / JDBC
- Xerces XML
- JavaScript / CSS
Download (1.8MB)
Added: 2005-04-29 License: GPL (GNU General Public License) Price:
1638 downloads
httpFileManager 0.0.6
httpFileManager is a file management script written in PHP allowing the remote administration of files over HTTP. more>>
httpFileManager is a file management script written in PHP allowing the remote administration of files over HTTP.
httpFileManager will turn your standard browser into a "Windows Explorer" and allow managing files on your web server on the fly. Its a complete replacement of traditional FTP, allowing you to manage files on your web server just with a web browser instead of a FTP client.
httpFileManager project also will provide extended features which are impossible with FTP such as creating and editing HTML files right on the server and zipping and unzipping files on the fly.
The purpose of httpFileManager is allowing file management and Web site maintenance right on the server. It may be used to manage a single site or multiple sites. The root of the files to be managed must of course be Web accessible.
httpFileManager is a simple, yet powerful tool allowing the administration of files through HTTP.
Enhancements:
- This release fixed a security issue.
- A number of smaller bugfixes and code improvements were also included.
<<lesshttpFileManager will turn your standard browser into a "Windows Explorer" and allow managing files on your web server on the fly. Its a complete replacement of traditional FTP, allowing you to manage files on your web server just with a web browser instead of a FTP client.
httpFileManager project also will provide extended features which are impossible with FTP such as creating and editing HTML files right on the server and zipping and unzipping files on the fly.
The purpose of httpFileManager is allowing file management and Web site maintenance right on the server. It may be used to manage a single site or multiple sites. The root of the files to be managed must of course be Web accessible.
httpFileManager is a simple, yet powerful tool allowing the administration of files through HTTP.
Enhancements:
- This release fixed a security issue.
- A number of smaller bugfixes and code improvements were also included.
Download (1.3MB)
Added: 2006-05-23 License: GPL (GNU General Public License) Price:
1250 downloads
Zip 2.32
Zip is a compression and file packaging utility for Unix, VMS, DOS, OS/2, Windows 9x/NT, Amiga, Atari, Macintosh. more>>
Zip is a compression and file packaging utility for Unix, VMS, DOS, OS/2, Windows 9x/NT, Amiga, Atari, Macintosh, BeOS, SMS/QDOS, MVS, VM/CMS, and others.
Zip is analogous to a combination of the Unix commands tar(1) and compress(1) and is compatible with PKWAREs PKZIP and Nico Maks WinZip. Its part of the Info-ZIP project.
Main features:
- creating zipfiles in a pipe or on a device
- VMS and OS/2 extended file attributes
- conversion between Unix, MS-DOS and Macintosh text file formats
- the ability to run on most of your favorite operating systems.
Enhancements:
- fixed -R operation to match the supplied file patterns in all recursed subdirectories, like PKZIP 2.04 "-p -r" (or PKZIPC 4+ "-recurse")
- handle cases where -x, -R, and -i patterns are mixed
- new example C-Sharp code for using DLLs
- added some directory-search speedups
- fixed bug when encrypting large uncompressible files
- fixed Windows NTFS time problem
- fixed VMS logical name parse problem
- added VMS DEBUG option
- updated VMS help
- fixed selection of files to delete by date
- added -MM option where each input file pattern must match at least one file and all input files must be readable
- added check for when Zip tries to exceed seek limit in output file
- minor changes to compile with Visual C++ 2005
- added support for Unix FIFOs (named pipes)
- other minor fixes
<<lessZip is analogous to a combination of the Unix commands tar(1) and compress(1) and is compatible with PKWAREs PKZIP and Nico Maks WinZip. Its part of the Info-ZIP project.
Main features:
- creating zipfiles in a pipe or on a device
- VMS and OS/2 extended file attributes
- conversion between Unix, MS-DOS and Macintosh text file formats
- the ability to run on most of your favorite operating systems.
Enhancements:
- fixed -R operation to match the supplied file patterns in all recursed subdirectories, like PKZIP 2.04 "-p -r" (or PKZIPC 4+ "-recurse")
- handle cases where -x, -R, and -i patterns are mixed
- new example C-Sharp code for using DLLs
- added some directory-search speedups
- fixed bug when encrypting large uncompressible files
- fixed Windows NTFS time problem
- fixed VMS logical name parse problem
- added VMS DEBUG option
- updated VMS help
- fixed selection of files to delete by date
- added -MM option where each input file pattern must match at least one file and all input files must be readable
- added check for when Zip tries to exceed seek limit in output file
- minor changes to compile with Visual C++ 2005
- added support for Unix FIFOs (named pipes)
- other minor fixes
Download (0.96MB)
Added: 2006-07-18 License: BSD License Price:
1389 downloads
MyFileNote 1.0
MyFileNote is service menu which will create a txt-file for a file or directory and opens it in your text editor. more>>
MyFileNote is a KDE service menu.
MyFileNote is a small, single-purpose service menu which will create a txt-file for a file or directory and opens it in your text editor (default kwrite).
No need for extra Software or "big" Databases of your files or some other imho overkills if you just want some notes.
It is really helpfull to have more infos on the files on your computer!
I use it very often for description of stuff i download from Websites or projects to-dos etc. .
Example:
you have just downloadet a file example.zip and you may want to remember where you get it.
Rightclick it -> Actions -> MyFileNote
It now opens Kwrite and you can copy-paste the url there.
The txt-files name is example.zip.txt in the same directory where example.zip is.
If you want to enter additional stuff it is no problem because a existing example.zip.txt will be used so you can just add your text!
Install:
Extract and then:
Just for your User: Copy MyFileNote.desktop to "/home/USERNAME/.kde/share/apps/konqueror/servicemenus/"
For all Users(do as root): Copy MyFileNote.desktop to "/usr/share/apps/konqueror/servicemenus/"
Notes:
If you want to use another editor (I for example prefer Kate) you have to edit MyFileNote.desktop and replace all "kwrite" with "kate".
Any comments welcome.
<<lessMyFileNote is a small, single-purpose service menu which will create a txt-file for a file or directory and opens it in your text editor (default kwrite).
No need for extra Software or "big" Databases of your files or some other imho overkills if you just want some notes.
It is really helpfull to have more infos on the files on your computer!
I use it very often for description of stuff i download from Websites or projects to-dos etc. .
Example:
you have just downloadet a file example.zip and you may want to remember where you get it.
Rightclick it -> Actions -> MyFileNote
It now opens Kwrite and you can copy-paste the url there.
The txt-files name is example.zip.txt in the same directory where example.zip is.
If you want to enter additional stuff it is no problem because a existing example.zip.txt will be used so you can just add your text!
Install:
Extract and then:
Just for your User: Copy MyFileNote.desktop to "/home/USERNAME/.kde/share/apps/konqueror/servicemenus/"
For all Users(do as root): Copy MyFileNote.desktop to "/usr/share/apps/konqueror/servicemenus/"
Notes:
If you want to use another editor (I for example prefer Kate) you have to edit MyFileNote.desktop and replace all "kwrite" with "kate".
Any comments welcome.
Download (MB)
Added: 2007-03-13 License: GPL (GNU General Public License) Price:
955 downloads

Finddouble 1.4
Finddouble searches directories for file duplicate. more>> finddouble 1.4 : is a Linux/Mac application. It searches directories for file duplicate. Very usefull to find copies of the same file : images, png, jpe, music, mp3, any kind of file.<<less
Download (22KB)
Added: 2009-04-27 License: Freeware Price: Free
428 downloads
AntiDialer 0.2
Antidialer is a GUI based broadband dialer program for users of Sify Broadband using Linux. more>>
Antidialer is a GUI based broadband dialer program for users of Sify Broadband using Linux. Well, Antidialer is not a cracking tool as the name suggests.
It is very much incomplete in the sense that it doesnt quite have the full feature set that the dialer provided by Sify for Windows has.
But it still does its job of connecting and disconnecting your internet whenever you want.
Main features:
- QT based GUI :-) (absent in the stock dialer provided by Sify)
- AutoConnect
- Encrypted password storage
- HeartBeat to keep connection alive
- XML based configuration file
Enhancements:
- MAC address spoofing is now part of the dialer.
- It can be activated by editing the $HOME/.antidialer/antidialerrc configuraton file and entering the desired MAC address in the "value" property of the "MacAddress" element.
- The dialer now adds missing configuration elements into the config file.
- The plugin framework is now cleaner and faster.
- An obscure bug where the dialer crashed when exactly one config element was missing was fixed.
<<lessIt is very much incomplete in the sense that it doesnt quite have the full feature set that the dialer provided by Sify for Windows has.
But it still does its job of connecting and disconnecting your internet whenever you want.
Main features:
- QT based GUI :-) (absent in the stock dialer provided by Sify)
- AutoConnect
- Encrypted password storage
- HeartBeat to keep connection alive
- XML based configuration file
Enhancements:
- MAC address spoofing is now part of the dialer.
- It can be activated by editing the $HOME/.antidialer/antidialerrc configuraton file and entering the desired MAC address in the "value" property of the "MacAddress" element.
- The dialer now adds missing configuration elements into the config file.
- The plugin framework is now cleaner and faster.
- An obscure bug where the dialer crashed when exactly one config element was missing was fixed.
Download (0.073MB)
Added: 2006-08-10 License: GPL (GNU General Public License) Price:
1175 downloads
PeaZip For Linux 2.2
Free archiver utility, open 7Z, ACE, PAQ, TAR, RAR, ZIP, encrypt and split files more>> PeaZip is an open source file and archive manager for 32 and 64 bit Windows (9x, 2000, XP, Vista) and Linux.
For both platforms it is available as installable or portable package, not needing installation.
Full support: 7Z, 7Z-sfx, ARC/WRC, BZ2/TBZ2, GZ/TGZ, PAQ/LPAQ, PEA, QUAD/BALZ, split, TAR, UPX, ZIP.
Open, browse, extract, test: ACE, ARJ, CAB, CHM, COMPOUND (MSI, DOC, XLS, PPT), CPIO, ISO, Java (JAR, EAR, WAR), Linux (DEB, PET/PUP, RPM, SLP), LHA/LZH, LZMA, NSIS, OOo, PAK/PK3/PK4, RAR, SMZIP, U3P, WIM, XPI, Z/TZ (71 file extension supported).
Other features: powerful search and filter functions, robust file copy, split/join files, quick or secure file deletion, compare/checksum/hash files, system benchmark, generate random passwords and keyfiles, two factor authentication, strong encryption (AES256).
PeaZip allows to: create/extract multiple archives at once, save archives layout, save job definition as command line (to be inspected, or used in scripts), save job logs.
The user interface is skinnable for colors, transparence and icons.<<less
Download (3.24MB)
Added: 2009-04-22 License: Freeware Price: free
185 downloads
Other version of PeaZip For Linux
Free archiver utility, open 7Z, ACE, PAQ, TAR, RAR, ZIP, encrypt and split files. PeaZip for ... , ARC/WRC, BZ2/TBZ2, GZ/TGZ, PAQ/LPAQ, PEA, QUAD, split, TAR, UPX, ZIP. Open, browse, extractLicense:Freeware
ZZIPlib 0.13.49
ZZIPlib library is intentionally lightweight, it offers the ability to easily extract data from files archived in a single zip. more>>
ZZIPlib library is intentionally lightweight, it offers the ability to easily extract data from files archived in a single zip file. Applications can bundle files into a single zip archive and access them. The implementation is based only on the (free) subset of compression with the zlib algorithm which is actually used by the zip/unzip tools.
The library allows reading zip archives in a number of ways,
archive mode:
reading the zip directory and extracting files from it. This is the traditional mode as seen with unzip-utilities. Some extra unzip-utiles for transparent/magic mode are shipped as well.
replacement mode:
Use ZZIP_FILE / ZZIP_DIR pointers provided by zziplib and put them to work with routines originally developped to work with real directories and file handles. The API calls do follow traditional synopsis from posix/stdio.
transparent mode:
Use replacement handles and allow the open()-calls to automatically detect when a file is contained in a zip archive or when it is a real file in the file system. A filepath can be partly in a real filesystem and partly within the zip archive when one is seen.
ext magic
Use the same filepath to access either a zipped or real file - it looks for a real file and there is none then every subdirectory of the path is checked, a ".zip" extension appended, and the zipped file transparently opened. This can speed up dat-file development dramatically.
io/xor magic
The access to the filesystem can be hooked up - examples are given for xor obfuscation which is great for game artwork and AI data. A small intro for SDLrwops usage is given as well.
<<lessThe library allows reading zip archives in a number of ways,
archive mode:
reading the zip directory and extracting files from it. This is the traditional mode as seen with unzip-utilities. Some extra unzip-utiles for transparent/magic mode are shipped as well.
replacement mode:
Use ZZIP_FILE / ZZIP_DIR pointers provided by zziplib and put them to work with routines originally developped to work with real directories and file handles. The API calls do follow traditional synopsis from posix/stdio.
transparent mode:
Use replacement handles and allow the open()-calls to automatically detect when a file is contained in a zip archive or when it is a real file in the file system. A filepath can be partly in a real filesystem and partly within the zip archive when one is seen.
ext magic
Use the same filepath to access either a zipped or real file - it looks for a real file and there is none then every subdirectory of the path is checked, a ".zip" extension appended, and the zipped file transparently opened. This can speed up dat-file development dramatically.
io/xor magic
The access to the filesystem can be hooked up - examples are given for xor obfuscation which is great for game artwork and AI data. A small intro for SDLrwops usage is given as well.
Download (0.64MB)
Added: 2007-03-22 License: LGPL (GNU Lesser General Public License) Price:
950 downloads
Files Zip for Plone 1.1.0RC2
Files Zip for Plone project allows users to download all files from a folder (recursively) in a ZIP archive. more>>
Files Zip for Plone project allows users to download all files from a folder (recursively) in a ZIP archive.
Adds a document action to folders (and folderish contents) that enables to download all files and images from archetypes based contents available from that folder in a ZIP file.
Optionally, the user may get the DC metadata of the contents that provide files in XML-RDF format in the ZIP file.
<<lessAdds a document action to folders (and folderish contents) that enables to download all files and images from archetypes based contents available from that folder in a ZIP file.
Optionally, the user may get the DC metadata of the contents that provide files in XML-RDF format in the ZIP file.
Download (0.12MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
984 downloads
Zip extension for PHP 1.8.9
Zip extension for PHP is a zip management extension. more>>
Zip extension for PHP is a zip management extension.
It can read, write, and create zip archives. It also supports stream access to any archive entry. It is 100% compatible with the old versions of the extension (which were read-only).
<<lessIt can read, write, and create zip archives. It also supports stream access to any archive entry. It is 100% compatible with the old versions of the extension (which were read-only).
Download (0.038MB)
Added: 2007-05-20 License: The PHP License Price:
542 downloads
p7zip 4.51
p7zip is a port of 7za.exe for Unix, Mac OS X, and BeOS. more>>
p7zip is a port of 7za.exe for POSIX systems like Unix (Linux, Solaris, OpenBSD, FreeBSD, Cygwin, ...), MacOS X and BeOS.
7za.exe is the command line version of 7-zip.
7-Zip is a file archiver with highest compression ratio.
Since 4.10, p7zip (like 7-zip) supports little-endian and big-endian machines.
INSTALL:
method 1
- edit install.sh to change DEST_HOME
- ./install.sh : to install
Remark : you must be "root" to install 7za in the directory "/usr/local"
method 2
- 7za is a stand-alone program, you can put this program where you want. example : cp bin/7za /usr/local/bin/7za
- 7z needs its plugins. You must copy the file 7z and the two directories Formats and Codecs in the same destination directory.
- if you want to be able to create SFX archive, copy bin/7zCon.sfx to the directory where 7za or 7z can be found.
Enhancements:
- Bug was fixed: 7-Zip 4.50 beta could not open some .7z archives.
New switch for command line version:
-ssc[-] enables/disables case-sensitive mode for file names.
- Speed optimizations for AES encryption.
- Some bugs were fixed.
- fix built of test_emul
- contrib/gzip-like_CLI_wrapper_for_7z/p7zip now supports commands like :
p7zip -- -name
p7zip "file name"
p7zip file1 file2 file3
p7zip -d file1.7z file2.7z file3.7z
<<less7za.exe is the command line version of 7-zip.
7-Zip is a file archiver with highest compression ratio.
Since 4.10, p7zip (like 7-zip) supports little-endian and big-endian machines.
INSTALL:
method 1
- edit install.sh to change DEST_HOME
- ./install.sh : to install
Remark : you must be "root" to install 7za in the directory "/usr/local"
method 2
- 7za is a stand-alone program, you can put this program where you want. example : cp bin/7za /usr/local/bin/7za
- 7z needs its plugins. You must copy the file 7z and the two directories Formats and Codecs in the same destination directory.
- if you want to be able to create SFX archive, copy bin/7zCon.sfx to the directory where 7za or 7z can be found.
Enhancements:
- Bug was fixed: 7-Zip 4.50 beta could not open some .7z archives.
New switch for command line version:
-ssc[-] enables/disables case-sensitive mode for file names.
- Speed optimizations for AES encryption.
- Some bugs were fixed.
- fix built of test_emul
- contrib/gzip-like_CLI_wrapper_for_7z/p7zip now supports commands like :
p7zip -- -name
p7zip "file name"
p7zip file1 file2 file3
p7zip -d file1.7z file2.7z file3.7z
Download (2.1MB)
Added: 2007-07-26 License: LGPL (GNU Lesser General Public License) Price:
863 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above zip files mac search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed