WinRAR Zip Unzip Archive应用简介
WinRAR Zip Unzip Archive2024更新内容
文件解压工具,和电脑端WINRAR类似,支持解压加密文档,简单易用. WinRAR, Zip Unzip archive is the Best and Well Know application to zip and unzip the files. WinRAR provides the full compression as well as extraction of Compressed file. You can extract every not only zip file but also every other compression file. It Supports all kind of compression archives to compress or extract like zip, unzip, rar, 7z and much more. Also a Great File Manager for you with full file manager functionality but advance in features and user friendly. You'd have never seen such file manager and such compressing tool of android. The Great Tool For You. This Archive Explorer is capable of showing the contents of different archives and some archives can be extracted. Contents can be shown are: ZIP,GZ,TGZ,TAR,ARC,ARJ,RAR,CAB,LZH,LHA. Contents can be extracted are: ZIP,GZ,TGZ,TAR. It is useful to store a group of files in one file for easy backup, for transfer to another directory, or for transfer to another computer. It is also useful to compress large files; compressed files take up less disk space and download faster via the Internet. It is important to understand the distinction between an archive file and a compressed file. An archive file is a collection of files and directories stored in one file. The archive file is not compressed — it uses the same amount of disk space as all the individual files and directories combined. A compressed file is a collection of files and directories that are stored in one file and stored in a way that uses less disk space than all the individual files and directories combined. If disk space is a concern, compress rarely-used files, or place all such files in a single archive file and compress it. To use bzip2 to compress a file, enter the following command at a shell prompt: bzip2 filename The file is compressed and saved as filename.bz2. To expand the compressed file, enter the following command: bunzip2 filename.bz2 The filename.bz2 compressed file is deleted and replaced with filename. You can use bzip2 to compress multiple files and directories at the same time by listing them with a space between each one: bzip2 filename.bz2 file1 file2 file3 /usr/work/school The above command compresses file1, file2, file3, and the contents of the /usr/work/school/ directory (assuming this directory exists) and places them in a file named filename.bz2. To use gzip to compress a file, enter the following command at a shell prompt: gzip filename The file is compressed and saved as filename.gz. To expand the compressed file, enter the following command: gunzip filename.gz The filename.gz compressed file is deleted and replaced with filename. You can use gzip to compress multiple files and directories at the same time by listing them with a space between each one: gzip -r filename.gz file1 file2 file3 /usr/work/school The above command compresses file1, file2, file3, and the contents of the /usr/work/school/ directory (assuming this directory exists) and places them in a file named filename.gz. To compress a file with zip, enter the following command: zip -r filename.zip filesdir In this example, filename.zip represents the file you are creating and filesdir represents the directory you want to put in the new zip file. The -r option specifies that you want to include all files contained in the filesdir directory recursively. To extract the contents of a zip file, enter the following command: unzip filename.zip You can use zip to compress multiple files and directories at the same time by listing them with a space between each one: zip -r filename.zip file1 file2 file3 /usr/work/school The above command compresses file1, file2, file3, and the contents of the /usr/work/school/ directory (assuming this directory exists) and places them in a file