I want to copy file a.txt to newDir/ from within a scala script. In java this would be done by creating 2 file streams for the 2 files, reading into buffer from a.txt and writing it to the FileOutputStream of the new file. Is there a better way to achieve this in scala? May be something in scala.tools.nsc.io._. I searched around but could not find much.
|
Why not use Apache Commons IO and FileUtils.copyFile() in particular ? Note that FileUtils has a large number of methods to copy files/directories etc. |
|||||
|
|
For performance reasons it is better to use java.nio.Channel to do the copying. Listing of copy.scala:
To try this out create a file called test.txt with the following content:
After creating test.txt, run the following from the command line:
Verify that test-copy.txt has |
|||||||||||
|
|
If you really want to do it yourself instead of using a library like commons-io, you can do the following in version 2.8. Create a helper method "use". It will give you a form of automatic resource management.
Then you can define a copy method like this:
Note that the buffer size (here: 1024) might need some tuning. |
|||||||
|
|
If you don't care too much about speed, you can make your life slightly easier by reading the file using scala.io.Source (this implementation is for 2.7.7):
But Source goes to all the trouble of parsing the file line by line, and then you just write it out again without actually processing the lines. Using byte read/write Java style will be considerably faster (about 2-3x last time I benchmarked it). Edit: 2.8 eats newlines, so you have to add them back in the write. |
|||||||||||||||
|
|
If you don't wanna use anything external, just do it as you would have done it in Java. The nice thing, is that you can. |
|||
|
|
|
Java 7 is now out and you have another option:
Of course you should start using |
|||
|
|
|
Scalax has scalax.io.FileExtras.copyTo(dest : File). But developement seems to have stopped. |
|||
|
|