https://github.com/simon04/guava-vfs
Guava's Files for Apache Commons VFS
https://github.com/simon04/guava-vfs
Last synced: 10 months ago
JSON representation
Guava's Files for Apache Commons VFS
- Host: GitHub
- URL: https://github.com/simon04/guava-vfs
- Owner: simon04
- Created: 2015-09-15T20:06:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-24T11:44:07.000Z (over 10 years ago)
- Last Synced: 2025-04-05T21:16:08.303Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 609 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
guava-vfs
=========
This library provides [Guava's Files](http://docs.guava-libraries.googlecode.com/git/javadoc/com/google/common/io/Files.html) utility methods with [Apache Commons VCS](https://commons.apache.org/proper/commons-vfs/) as backend. In most methods, the signature has changed from `File file` to `String file` which is handed to [`FileSystemManager#resolveFile`](https://commons.apache.org/proper/commons-vfs/apidocs/org/apache/commons/vfs2/FileSystemManager.html#resolveFile(java.lang.String)).
Usage
-----
This project is being published to [bintray.com/simon04/maven/guava-vfs](https://bintray.com/simon04/maven/guava-vfs/). To use it, add the following to your `build.gradle`
```gradle
repositories {
maven {
url 'https://dl.bintray.com/simon04/maven/'
}
}
dependencies {
compile(group: 'net.simon04', name: 'guava-vfs', version: '1.1.0', ext: 'jar')
}
```
License
-------
* MIT
Author
------
* Simon Legner