}
public void rename(FileName oldPath, FileName newPath) throws Exception {
// v content delu ni ni� za postoriti na to temo
FileName adjusted = root.absolutize(oldPath);
File thefile = new File(fsroot, adjusted.toString());
FileName adjDest = root.absolutize(newPath);
File destFile = new File(fsroot, adjDest.toString());
if(!thefile.renameTo(destFile))
throw new VFSException("Could not move " + oldPath + " to " + newPath);
}