filemanlite

File Management Library

License

License

GroupId

GroupId

com.3xcool
ArtifactId

ArtifactId

filemanlite
Last Version

Last Version

2.2.2
Release Date

Release Date

Type

Type

aar
Description

Description

filemanlite
File Management Library
Project URL

Project URL

https://github.com/3xcool/FilemanLite
Source Code Management

Source Code Management

https://github.com/3xcool/FilemanLite

Download filemanlite

How to add to project

<!-- https://jarcasting.com/artifacts/com.3xcool/filemanlite/ -->
<dependency>
    <groupId>com.3xcool</groupId>
    <artifactId>filemanlite</artifactId>
    <version>2.2.2</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.3xcool/filemanlite/
implementation 'com.3xcool:filemanlite:2.2.2'
// https://jarcasting.com/artifacts/com.3xcool/filemanlite/
implementation ("com.3xcool:filemanlite:2.2.2")
'com.3xcool:filemanlite:aar:2.2.2'
<dependency org="com.3xcool" name="filemanlite" rev="2.2.2">
  <artifact name="filemanlite" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.3xcool', module='filemanlite', version='2.2.2')
)
libraryDependencies += "com.3xcool" % "filemanlite" % "2.2.2"
[com.3xcool/filemanlite "2.2.2"]

Dependencies

compile (3)

Group / Artifact Type Version
org.jetbrains.kotlin : kotlin-stdlib-jdk7 jar 1.4.32
androidx.appcompat » appcompat jar 1.2.0
androidx.core » core-ktx jar 1.3.2

Project Modules

There are no modules declared in this project.

FilemanLite

Maven Central

Very Lightweight Library for File Management based on Fileman Library.

Dependency

In build.graddle (Project)

  allprojects {
    repositories {
        google()
        mavenCentral
    }
  }

In build.graddle (app)

dependencies {
implementation 'com.3xcool:filemanlite:$LATEST_VERSION'
}

Drivers

Use FilemanDrivers enum class:

  1. SandBox: Where the app is installed (can't be accessed by other apps)
  2. Internal: Device storage (can be accessed by other apps)
  3. External: SD Card if available

Simple CRUD

Don't call these functions on the Main Thread to avoid UI freeze.

Fileman.write(fileContent: String, context: Context, drive: Int, folder: String, filename: String, append: Boolean)
Fileman.read(context: Context, drive: Int, folder: String, filename: String)
Fileman.delete(context: Context, drive: Int, folder: String, filename: String)

License

Copyright 2020 André Filgueiras

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Versions

Version
2.2.2
2.2.1
2.2.0