Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java File Storege abstraction layer?

Tags:

java

file

Does anybody uses some thirdparty library for files management, I mean save/delete/move files etc?

I am looking for something that gives me flexibility and independently of file system representation even if I'll decide to store files on ftp or something else it will be easy to achieve with this library.

I can write such abstraction layer or mini framework on my own, but I just don't wont to do that is already done.

Please advice me where to look. Thanks.

like image 207
endryha Avatar asked Oct 23 '25 14:10

endryha


1 Answers

I've used Apaches Commons VFS with great success. It was easy to for example switch from filesystem storage to FTP.

like image 153
Kristian Avatar answered Oct 26 '25 04:10

Kristian