ioService().createDirectories( path );
ioService().write( path.resolve( "myFile.txt" ), "ooooo!" );
ioService().write( path.resolve( "mytarget" ), "xooooo!" );
ioService().copy( path.resolve( "myFile.txt" ), path.resolve( "mytarget" ) );
}
@Test(expected = NoSuchFileException.class)
public void readAttributesNoSuchFileException() {
final Path path = getDirectoryPath().resolveSibling( "somethingXXX" );