Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8482201
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T19:45:50+00:00 2026-06-10T19:45:50+00:00

I have a use case as per which, my module which is running over

  • 0

I have a use case as per which, my module which is running over Linux file system should be notified of any new file in remote windows share.

Is there any built in functionality for this? I have done some basic Googling and found some filewatcher (Filesystemwatcher in C#) sort of thing.

Is it useful for Java 6? How easy and efficient it will be for a FTP call where I have to download the file as and when it appears.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T19:45:51+00:00Added an answer on June 10, 2026 at 7:45 pm

    There is a file watcher as of java 7. See here for the trail on this. I am not sure if this works over remote windows shares so it might be worth experimenting a bit with it.

    If you cannot use java 7 then it might be worth using the ScheduledExecutor (as of java 5) and manually check every x seconds the remote directory

    EDIT

    Not sure if the library you suggested needs java 7 or not. It;s not too hard to write something that scans so I have written it below for you in a unit test. I have not tested it so it may have a couple of bugs in but it should be almost there. It basically scans a directory every second and then will print to sysout files that have been added or removed. It checks the directory you specify and all subdirectories.

    public void test() {
        ScheduledExecutorService ex = Executors.newSingleThreadScheduledExecutor();
            ex.scheduleAtFixedRate(new Runnable(){
        @Override
        public void run() {
            scanDirectory(new File("."));
        }}, 1, 1, TimeUnit.SECONDS);
    }
    
    private void scanDirectory(File directory) {
        Set<File> before = new HashSet<File>();
        Set<File> after = new HashSet<File>();
        addFiles(directory, after);
    
       for (File f :after) {
          if (!before.contains(f)) {
             System.out.format("new file added %s", f);     
          }
       }
       for (File f :before) {
            if (!after.contains(f)) {
                System.out.format("file removed %s", f);    
            }
        }
    
        before.clear();
        before.addAll(after);
    }
    
    private void addFiles(File file, Collection<File> allFiles) {
        File[] files = file.listFiles();
        if (files != null) {
            for (File f : files) {
                allFiles.add(f);
                addFiles(f, allFiles);
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a use case where if a number lies between 0-10 it should
I have this use case of an xml file with input like Input: <abc
I'm just starting to learn AspectJ, and I have use-case for say, User login.
I have following use-case: there are several assemblies decorated with ProtoContract classes and I
I have a use case where I need to call a (non-static) method in
I have a use case where I am setting the page focus to a
I have a use case with NServiceBus explained in this question. Essentially there is
I have a use case where I only need to store certain fields to
I am currently evaluating Install4J for my company. We have a use case where
I have the following use case: There's a class called Template and with that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.