filemanlite

File Management Library

Лицензия

Лицензия

Группа

Группа

com.3xcool
Идентификатор

Идентификатор

filemanlite
Последняя версия

Последняя версия

2.2.2
Дата

Дата

Тип

Тип

aar
Описание

Описание

filemanlite
File Management Library
Ссылка на сайт

Ссылка на сайт

https://github.com/3xcool/FilemanLite
Система контроля версий

Система контроля версий

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

Скачать filemanlite

Имя Файла Размер
filemanlite-2.2.2.pom
Обзор

Как подключить последнюю версию

<!-- 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"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
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

Модули Проекта

Данный проект не имеет модулей.

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.

Версии библиотеки

Версия
2.2.2
2.2.1
2.2.0