2010年6月4日金曜日

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").createFolder()

// 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 件のコメント:

コメントを投稿