Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.77 KB

File metadata and controls

28 lines (20 loc) · 1.77 KB

Java-Packer-Unpacker

  • This project is used to perform packing and unpacking activity for multiple types of files.
  • In the case of Packing activity, we maintain one file which contains metadata and data of multiple files from the specified directory.
  • In the case of Unpacking activity, we extract all data from packed files and according to its metadata, we create all files
  • This Application is similar to ZIP operation but the difference is here we don't compress files while packing activity
  • The packing and unpacking operations are performed using inbuilt file operations in Java
  • Currently, only .txt, .cpp, .java & .c files can be packed using this applications and all other files are ignored.

How to execute this project?

  1. Open PackerUnpacker.exe
  2. Select Pack or Unpack

home

  1. Packing Activity:-
    • Enter the aboslute path of the directory in which all the files to be packed are present. eg:- C:\Users\Dir. Here, Dir directory contains all the files to be packed.
    • Enter the absolute path and the name of the output file to be created. eg:- C:\Users\PackedFile. Here, Packedfile is the output file.
    • Enter Submit button and check if a new packed file is created at the given location.

pack

  1. Unpacking Activity:-
    • Enter the absolute path of previously created packed file or any packed other packed file.
    • Enter Submit button and check if all packed files are unpacked at the same location.

unpack