All Projects → yoandypv → springboot-ftpclient

yoandypv / springboot-ftpclient

Licence: Apache-2.0 license
Ejemplo de @service para la conexión, carga y descarga de archivos desde un servidor FTP usando Spring Boot

Programming Languages

java
68154 projects - #9 most used programming language
shell
77523 projects
Batchfile
5799 projects

Projects that are alternatives of or similar to springboot-ftpclient

Farmanager
File and Archive Manager
Stars: ✭ 898 (+4390%)
Mutual labels:  ftp-client
Whipftp
OpenSource FTP / SFTP client
Stars: ✭ 158 (+690%)
Mutual labels:  ftp-client
EOSFTPServer
A project to create a complete, standard compliant, multi-user, Objective-C (Mac OS X / iOS) FTP server.
Stars: ✭ 35 (+75%)
Mutual labels:  ftp-client
Drivebackupv2
Uploads Minecraft backups to Google Drive/OneDrive or by (S)FTP
Stars: ✭ 26 (+30%)
Mutual labels:  ftp-client
Arduinosim800l
Arduino HTTP & FTP client for SIM800L/SIM800 boards to perform GET and POST requests to a JSON API as well as FTP uploads.
Stars: ✭ 127 (+535%)
Mutual labels:  ftp-client
php-ftp-client
📦 Provides helper classes and methods to manage FTP files in an OOP way.
Stars: ✭ 81 (+305%)
Mutual labels:  ftp-client
Ftp
FTP client package for Go
Stars: ✭ 785 (+3825%)
Mutual labels:  ftp-client
FTP
FTP客户端,服务端
Stars: ✭ 34 (+70%)
Mutual labels:  ftp-client
Fluentftp
An FTP and FTPS client for .NET & .NET Standard, optimized for speed. Provides extensive FTP commands, File uploads/downloads, SSL/TLS connections, Automatic directory listing parsing, File hashing/checksums, File permissions/CHMOD, FTP proxies, FXP support, UTF-8 support, Async/await support, Powershell support and more. Written entirely in C#,…
Stars: ✭ 1,943 (+9615%)
Mutual labels:  ftp-client
webftp
React + Electron FTP client
Stars: ✭ 65 (+225%)
Mutual labels:  ftp-client
Anexplorer
📁 Another Android Explorer ( File Manager ) is an All-in-One Open source file manager. AnExplorer File Manager (File Explorer) is designed for all android devices including Phones, Phablets, Tablets, Chromecast, Wear OS, Android TV and Chromebooks. It's a fully designed with Material guidelines by Google.
Stars: ✭ 1,505 (+7425%)
Mutual labels:  ftp-client
Aioftp
ftp client/server for asyncio (http://aioftp.readthedocs.org)
Stars: ✭ 116 (+480%)
Mutual labels:  ftp-client
termscp
🖥 A feature rich terminal UI file transfer and explorer with support for SCP/SFTP/FTP/S3
Stars: ✭ 707 (+3435%)
Mutual labels:  ftp-client
Ftps
Implementation of the FTPS protocol for Golang.
Stars: ✭ 24 (+20%)
Mutual labels:  ftp-client
publish-sftp
One-line command to quickly publish resources to a specified server
Stars: ✭ 41 (+105%)
Mutual labels:  ftp-client
Winscp
WinSCP is a popular free SFTP and FTP client for Windows, a powerful file manager that will improve your productivity. It supports also Amazon S3, FTPS, SCP and WebDAV protocols. Power users can automate WinSCP using .NET assembly.
Stars: ✭ 794 (+3870%)
Mutual labels:  ftp-client
Tinyfilemanager
The best web based PHP File Manager in single file, Manage your files efficiently and easily with tinyfilemanager
Stars: ✭ 2,679 (+13295%)
Mutual labels:  ftp-client
ftpConnect
A simple and robust dart FTP Client Library to interact with FTP Servers with possibility of zip and unzip files.
Stars: ✭ 43 (+115%)
Mutual labels:  ftp-client
Shareaza
Shareaza is a peer-to-peer client for Windows that allows you to download any file-type found on several popular P2P networks.
Stars: ✭ 103 (+415%)
Mutual labels:  ftp-client
yii2-ftp
FTP Client for Yii2
Stars: ✭ 32 (+60%)
Mutual labels:  ftp-client

springboot-ftpclient

Ejemplo de @Service para la conexión, carga y descarga de archivos desde un servidor FTP usando Spring Boot.

Este proyecto implementa un @Service Spring Boot que posibilita y brinda un API sencillo para que pueda ser reusado por otros desarrolladores para la conexión a servidores que implementen el protocolo FTP. Ofrece un API de 4 métodos principales:

  • connectToFTP(String host, String user, String pass)
  • uploadFileToFTP(File file, String ftpHostDir , String serverFilename)
  • downloadFileFromFTP(String ftpRelativePath, String copytoPath)
  • void disconnectFTP()

Los nombres de los métodos un intuitivos, para usar en sus proyecto solo basta con inyectar la interfaz FTPService, vea el MainController de ejemplo en el código.

Si te gusta este proyecto, regalame una estrella.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].