我的程序正在监视指定文件路径中的任何文件更改,如果有任何新文件到来,它将发出通知,但在父文件夹中创建任何子文件夹时会失败。父文件夹的文件路径正在监视C:/play
但是当在父文件夹中创建了一个像C:/play/abc
这样的新子文件夹时,我的程序能够检测到,但是当我尝试将任何文件插入abc文件夹,我的程序无法检测到已创建新文件。我已经测试了various methods但不幸的是我无法让它工作。任何人都可以在我的参考链接上提供任何指南?我的示例代码遵循我的参考链接中的指南
这是我添加到检查子目录的功能后的源代码
public class fileStatus
{
public static void main(String [] args) throws InterruptedException
{
try(WatchService svc = FileSystems.getDefault().newWatchService())
{
Map<WatchKey, Path> keyMap = new HashMap<>();
Path path = Paths.get("C:/play");
fileStatus fd = new fileStatus();
fd.registerAll(path);
keyMap.put(path.register(svc,
StandardWatchEventKinds.ENTRY_CREATE),
path);
WatchKey wk ;
do
{
wk = svc.take();
Path dir = keyMap.get(wk);
for(WatchEvent<?> event : wk.pollEvents())
{
WatchEvent.Kind<?> type = event.kind();
Path fileName = (Path)event.context();
System.out.println("\nThe new file :"+fileName+ "Event :" +type); //print the new file name
}
}while(wk.reset());
}
catch(IOException e)
{
System.out.println("Problem io in somewhere");
}
}
private void registerAll(Path path) throws IOException
{
Files.walkFileTree(path, new SimpleFileVisitor<Path>()
{
@SuppressWarnings("unused")
public FileVisitResult preVisitDireotry(Path path,BasicFileAttributes attrs) throws IOException
{
return FileVisitResult.CONTINUE;
}
});
}
}
This是我的参考代码,我的文件夹结构如下所示,
/root
/Folder A
/test.txt
/Folder B
/abc.txt
答案 0 :(得分:1)
简而言之,您只注册了要监视的父目录。您将创建的任何子目录都不会被监视。请参阅{{3}}。