Rémi Forax wrote: > : > Alan, is there a way to create a RandomAccessFile form a Path ? Not directly so it requires using the String representation, eg: Path file = .. RandomAccessFile raf = new RandomAccessFile(file.toString(), "rw") -Alan.