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

  • Home
  • SEARCH
  • 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 4382306
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T12:45:44+00:00 2026-05-21T12:45:44+00:00

I have an RSS feed URL, that I can view in any Feed Reader.

  • 0

I have an RSS feed URL, that I can view in any Feed Reader.
This RSS feed is not controlled by me, it is only consumed by me.

This RSS Feed (Office of Inspector General’s Excluded Provider List) links to a page with download-able files.

These files are updated approximately once a month, and the RSS feed displays new “unread” items.

What I want to do is write something (in C#) that checks this RSS Feed once a week, and when a new item (i.e. a new download-able file) is available, triggers off an executable.

This is essentially like a very scaled-down RSS Reader, with the sole purpose of triggering an executable when a new item appears.

Any guidance, advice would be greatly appreciated.

Edit:

  • I need help in determining when a new
    item becomes available for
    download.
  • The running of an
    executable I can do.
  • The
    executable that will run, will process
    the downloaded file.
  • 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-21T12:45:45+00:00Added an answer on May 21, 2026 at 12:45 pm

    As a commenter already noted, this question is quite broad, but here’s an attempt to answer:

    • You can either write a Windows Service (use a template that comes with VS/MonoDevelop) or you can write a simple console app that would be called by Windows Scheduler or Cron.

    • The main code will use one of the many RSS feed parsers available:

    There are plenty of examples here on SO. IMO, the simplest LINQ-based is here

    I personally like this approach, also using LINQ.

    • Once you parse the feed, you need to look for the value of the Link element, found by doing this from the SO example above:

    ….

    var feeds = from feed in feedXML.Descendants("item")
                  select new
                  {
                    Title = feed.Element("title").Value,
                    **Link** = feed.Element("link").Value,
                    Description = feed.Element("description").Value
                  };
    

    ….

    • So, now that you have the executable, you’ll need to download it to your machine. I suggest you look into this example from MSDN:
    • Now, that you have the file downloaded, simple use Process.Start("Path to EXE"); to execute it.

    Watch out for viruses in the exes!!!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a WCF service that uses a System.ServiceModel.Syndication.SyndicationFeed to create an RSS feed.
I have an RSS feed that I'm setting up on my new site using
My company is starting work on building a web-based RSS reader that users can
I have two websites that declare an RSS feed, like so: <link rel=alternate type=application/rss+xml
I have the following code that converts my twitter account rss feed into a
I have a old website that generate its own RSS everytime a new post
Setup I have a website that draws RSS feeds and displays them on the
I have a python sgi script that attempts to extract an rss items that
I have the following Javascript code, where feed is a valid url to an
I'm writing a program in Ruby that downloads a file from an RSS feed

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.