Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Accessing FTP files from Scala

Tags:

scala

ftp

I can't seem to find a idiomatic way to access FTP files from a Scala library. Are there any mature libraries for this in Scala, or whould the prefered way be, to use the Java libraries for instance the Apache FTP client?

Thanks in advance.

like image 587
StefanE Avatar asked Oct 06 '11 08:10

StefanE


1 Answers

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)
like image 62
VonC Avatar answered Sep 24 '22 13:09

VonC