1

I look at their documentation here http://mongodb.github.io/mongo-scala-driver/1.1/ and I could not find where it is mentioned.

mmdc
  • 1,677
  • 3
  • 20
  • 32

2 Answers2

3

Unfortunately mongo-scala-driver is written from scratch (it's not a java driver wrapper) and it does not support GridFS.

You can take a look at ReactiveMongo - it offers an API for GridFS.

Otherwise, you can always use the Java driver instead.

tomdavies
  • 1,896
  • 5
  • 22
  • 32