Scala ワークシート (および Scala インタープリター) の作業ディレクトリーを、Eclipse インストール・ディレクトリーではなく、Eclipse プロジェクト・パスにしたいと考えています。どうすれば(非プログラム的に)それを達成できますか?
を使用できることはわかっていますSystem.setProperty("user.dir", "...")
が、コードに属していない私見です。さらに、うまくいかないようです:
object ScratchWS {
System.setProperty("user.dir", "C:\\") //> res0: String = C:\adt-bundle-windows-x86_64-20130219\eclipse
new File("putty.exe").exists() //> res1: Boolean = false
new File("C:\\putty.exe").exists() //> res2: Boolean = true
}