Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lclpyt/archivepart
A tool to manage archives that are split into multiple parts e.g. for use of big archives on FAT32.
https://github.com/lclpyt/archivepart
android fat32 filesystem java-8
Last synced: 23 days ago
JSON representation
A tool to manage archives that are split into multiple parts e.g. for use of big archives on FAT32.
- Host: GitHub
- URL: https://github.com/lclpyt/archivepart
- Owner: LCLPYT
- License: mit
- Created: 2020-01-12T23:18:04.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-03T18:46:36.000Z (3 months ago)
- Last Synced: 2024-10-15T06:28:07.327Z (2 months ago)
- Topics: android, fat32, filesystem, java-8
- Language: Java
- Size: 74.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ArchivePart
A tool to manage archives that are split into multiple parts e.g. for use of big archives on FAT32.It does not support compression but a simple encryption method.
Can be used to store archives bigger than 4GB on **android**.## Requirements
- Java 8+## Usage
In order to run the program via command line, you have to download a runnable release from the 'releases' tab.
Then execute the file via command line:
`java -jar ArchivePart-cmd.jar --help`## Implementation for developers
Gradle:**Step 1.** Add a custom repository to your repositories
```gradle
repositories {
maven { url 'https://repo.lclpnet.work/repository/internal' }
}
```
**Step 2.** Add the dependency
```gradle
dependencies {
implementation 'work.lclpnet:archivepart:2.1.0'
}
```Maven:
**Step 1.** Add a custom repository to your repositories
```xml
lclpnetwork
LCLPNetwork Repository
https://repo.lclpnet.work/repository/internal
```
**Step 2.** Add the dependency
```xml
work.lclpnet
archivepart
2.1.0
```