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 6955201
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:42:21+00:00 2026-05-27T14:42:21+00:00

I am beginner trying to develop a Windows service which keeps checking a folder

  • 0

I am beginner trying to develop a Windows service which keeps checking a folder (or group of folders) for any new file or changed files. As soon as it detects any new file or changes (to files or folders) then it copies the files (and any new folders) and paste it to another location.

I have done the same thing with a Windows Forms application but in a Windows Service I don’t know what to do – how can I do this in a Windows Service?

  • 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-05-27T14:42:22+00:00Added an answer on May 27, 2026 at 2:42 pm

    Here is correct answer for this question

    public static void MyMethod()
    {
        String[] files = Directory.GetFiles("E:\\", "*.*");
        foreach (string file in files)
        {
            var fileN = file.Substring(2);
            string destfile = "E:\\2nd folder" + fileN;
            File.Copy(file, destfile, true);
        }
    }
    

    polling is needed to watch the file after a fix interval of time….this code is watch the file 2sec

    protected override void OnStart(string[] args)
    {
        timer.Elapsed += new ElapsedEventHandler(OnElapsedTime);
        timer.Interval = 2000;
        timer.Enabled = true; 
        MyMethod();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am a complete beginner trying to develop for FCKeditor so please bear with
I am beginner in PHP. I am trying to parse this xml file. <relationship>
I am beginner and trying to develop facebook desktop apps with below code use
I'm a beginner level programmer trying to make a game app for the iphone
SQL Server Beginner question: I'm trying to introduce a computed column in SQL Server
I was just trying to learn the syntax of the beginner things, and how
I'm a Lisp beginner. I'm trying to memoize a recursive function for calculating the
As a complete beginner with no programming experience, I am trying to find beautiful
I am a complete JSP beginner. I am trying to use a java.util.List in
I'm a beginner C++ programmer, and to stretch my mind I've been trying some

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.