我要求我需要验证我以前用java应用程序创建的目录的修改。
用户可以通过创建文件并删除文件或修改来修改目录,因此我只想验证特定目录是否已被修改。
我的解决方案:我需要一个包含上次修改时间的哈希值,每次我必须通过哈希值匹配目录的最后修改时间。
但是我的技术人员反对有许多技巧和库,以便用户可以修改其上次修改时间。
请告诉我,请替代它。
答案 0 :(得分:1)
使用java 7 watch service api
for (;;) {
WatchKey key;
try {
key = watcher.take();
} catch (InterruptedException x) {
return;
}
for (WatchEvent<?> event: key.pollEvents()) {
WatchEvent.Kind<?> kind = event.kind();
if (kind == OVERFLOW) {
continue;
}
WatchEvent<Path> ev = (WatchEvent<Path>)event;
Path filename = ev.context();
try {
Path child = dir.resolve(filename);
if (!Files.probeContentType(child).equals("text/plain")) {
System.err.format("New file '%s'" +
" is not a plain text file.%n", filename);
continue;
}
} catch (IOException x) {
System.err.println(x);
continue;
}
System.out.format("Emailing file %s%n", filename);
}
boolean valid = key.reset();
if (!valid) {
break;
}
}