2010年6月5日土曜日

groovyとApache Commons VFSでRAMファイルシステム上でファイルを移動する

groovyとApache Commons VFSでRAMファイルシステム上でファイルを移動するには、以下のコードを実行します。

import org.apache.commons.vfs.*

fsm = VFS.getManager()

// RAM file systemにファイルをコピー
fsm.resolveFile( "ram://folder1/test.txt").copyFrom(
fsm.resolveFile("C:\\share\\commons-vfs\\test.txt"),
new AllFileSelector())

// ファイルを移動
fsm.resolveFile( "ram://folder1/test.txt").moveTo(
fsm.resolveFile( "ram://test.txt")
)

// RAM file systemのファイルを列挙
files = fsm.resolveFile("ram:///").getChildren()
for(file in files){
println file.getName().getBaseName()
}


動作環境
groovy 1.7.1, JDK6 Update19, apache commons vfs 1.0, apache commons logging 1.1.1

0 件のコメント:

コメントを投稿