Skip to content

kalextaday/jfilemanager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

Java Java Java Java Java


Logo

Kevin Taday ⭐

Library for file manager !
Landing »

Ver Demo · Reportar Bug

TABLE OF CONTENTS
  1. About The Project
  2. Getting Started
  3. Implementation in your project
  4. Contributing
  5. License
  6. ChangeLog
  7. FAQ

About The Project 💼 ️

Library for file manager

(ir arriba)

Getting Started ⚡


For init in this project you need to install the next tools:

Implementation in your project


Dependencies

  • In maven
<dependency>
  <groupId>io.github.kalextaday</groupId>
  <artifactId>jfilemanager</artifactId>
  <version>0.0.1</version>
  <type>pom</type>
</dependency>
  • In Gradle Grovy
implementation 'io.github.kalextaday:jfilemanager:0.0.1'
  • In Gradle Kotlin
implementation (io.github.kalextaday:jfilemanager:0.0.1)

Implementation in code

  • In Spring Boot
@Configuration
public class YourClassConfig {

    @Bean
    public ManageFiles manageFiles() {
        return new ManageFiles();
    }
}
  • In Java without any framework
public class YourClassConfig {
    
  public VoDirectory yourNameMethod() {
    ManageFiles manageFiles = new ManageFiles();
    VoDirectory voDirectory = manageFiles.getContentDirectory("F:\\DOCUMENTOS/CV");
    // Your Business logic
    return voDirectory;
  }
}

Contributing


Contributions are what make the project community such an amazing place to learn, inspire, and create. Any contribution you make is greatly appreciated.

Contributors

  • Kevin Taday

Prerequisites

  • Install jdk version 8
  • Install IDE for development in java (Netbeans o IntelliJ Idea o VS Code), preference INTELLIJ IDEA community version or ultimate

Installation

  1. Clone repository
git clone https://github.com/kalextaday/jfilemanager.git
  1. Compile with dependencies
./gradlew build

(ir arriba)

License


GNU GENERAL PUBLIC LICENSE

ChangeLog


  • 0.0.1
    • First version in maven central

FAQ