public void setLastModified(long lastModified) throws IOException {
NFS2Client client = getNFS2Client();
try {
client.setAttribute(getFileHandle(), -1, -1, -1, -1,
new Time(-1, -1), new Time(lastModified));
} catch (NFS2Exception e) {
throw new IOException(e.getMessage(), e);
}
}