Sitemap Generator from URL List in C#

In this exercise, you will create a C# program that generates a sitemap using a text file containing URLs. The program should take three parameters: the name of the text file containing the URLs, the modification date, and the change frequency. The program should read the text file, generate a sitemap with the URLs, and display the sitemap content based on the given parameters.

The program should allow the user to specify the modification date and frequency (e.g., daily, weekly, monthly). The text file should contain a list of file names (URLs) that need to be indexed, with each file name on a separate line.



Group

Using Additional Libraries in C#

Objective

1. Accept three arguments: the file name containing URLs, the modification date, and the change frequency.
2. Read the contents of the text file, where each line contains a URL.
3. Generate a sitemap entry for each URL, including the provided modification date and change frequency.
4. Display the generated sitemap on the console.

You need to create a program that takes the following parameters: the name of a text file containing the URLs, the modification date, and the change frequency.

Example C# Exercise

 Copy C# Code
using System;  // For general system functions
using System.IO;  // For file handling operations

class Program
{
    static void Main(string[] args)
    {
        // Checking if the correct number of arguments are provided
        if (args.Length != 3)
        {
            Console.WriteLine("Usage: sitemapCreator   ");
            return; // Exit if the arguments are incorrect
        }

        string fileName = args[0];  // The first argument is the file containing URLs
        string modificationDate = args[1];  // The second argument is the modification date
        string frequency = args[2];  // The third argument is the frequency of change

        // Check if the file exists
        if (!File.Exists(fileName))
        {
            Console.WriteLine("The specified file does not exist.");
            return;
        }

        // Reading all lines from the file
        string[] urls = File.ReadAllLines(fileName);

        // Start generating the sitemap
        Console.WriteLine("");
        Console.WriteLine("");

        // For each URL in the file, generate a sitemap entry
        foreach (string url in urls)
        {
            Console.WriteLine("  ");
            Console.WriteLine($"    {url}");  // URL location
            Console.WriteLine($"    {modificationDate}");  // Modification date
            Console.WriteLine($"    {frequency}");  // Change frequency
            Console.WriteLine("  ");
        }

        Console.WriteLine("");
    }
}

 Output

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>http://example.com/page1</loc>
    <lastmod>2011-11-18</lastmod>
    <changefreq>weekly</changefreq>
  </url>
  <url>
    <loc>http://example.com/page2</loc>
    <lastmod>2011-11-18</lastmod>
    <changefreq>weekly</changefreq>
  </url>
</urlset>

Share this C# Exercise

More C# Practice Exercises of Using Additional Libraries in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • File Explorer with Navigation in C#

    In this exercise, you will create a C# program that displays the files and folders in the current directory. The user can navigate through the list by moving up and down. When the ...

  • Search Files by Name in Folder and Subfolders in C#

    In this exercise, you will create a program that stores the names of files located in a specific folder and its subfolders. The program will then prompt the user to enter a search ...

  • Display Current Date and Time in C#

    In this exercise, you will create a program that displays the current date and time in a specific format. The format should be as follows: "Today is 6 of February of 2015. It's 03:...

  • Display Files in the Current Folder in C#

    In this exercise, you will create a C# program that retrieves and displays all files in the current folder. You will use the System.IO namespace, particularly the Directory.GetFile...

  • Display Executable Files in Current Folder in C#

    In this exercise, you will create a C# program that retrieves and displays the names of all executable files in the current folder. The program will search for files with specific ...

  • Display Current Time in Top-Right Corner in C#

    In this exercise, you will create a C# program that displays the current time in the top-right corner of the console screen. The program will update the time every second, showing ...