Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
417 views
in Technique[技术] by (71.8m points)

java - Make FileAlterationObserver to observe remote directory

How to make FileAlterationObserver to observe a remote directory?

This can accept a String path or a Java File. Both the cases it will look for the directory in local context. I have a directory in remote server file system.

It would be also helpful if anyone tell me how to create a new File object referring to the file in the remote directory.

Example:

File file = new File("remote directory path");
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You cannot.

  • The File object cannot refer to an SFTP file.
  • There's no way to have the SFTP server notify you on changes in a remote file/directory (the protocol itself does not have a mechanism for that).

All you can do is to use JSch (or other) SFTP interface to check for changes in regular intervals yourself.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...