*/
public VirtualFile addChild(VirtualFile vf, String newName)
{
try
{
AssembledFileHandler handler = new AssembledFileHandler(directory.getVFSContext(), directory, newName, vf.getHandler());
directory.addChild(handler);
return handler.getVirtualFile();
}
catch (IOException e)
{
throw new RuntimeException(e);
}