Accessing FTP files from Scala
I can't seem to find a idiomatic way to access FTP files from a Scala library. Are there any mature librarie开发者_开发问答s for this in Scala, or whould the prefered way be, to use the Java libraries for instance the Apache FTP client?
Thanks in advance.
There doesn't seem to be a dedicated Scala library.
The only scala project managing FTP access is Scalanet, but:
- it hasn't been updated since 2009
- it simply encapsulates the
org.apache.commons.net.ftp
classes from the Apache Commons Net™ library (as seen in the FTP.scala
class)
精彩评论