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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T11:12:27+00:00 2026-05-11T11:12:27+00:00

I would like to know the file creation/modification date of the XML file currently

  • 0

I would like to know the file creation/modification date of the XML file currently being processed by my XSLT code.

I am processing an XML file and producing an HTML report. I’d like to include the date of the source XML file in the HTML report.

Note: I am using C# .NET 2008 and using the built-in XslCompiledTransform class. I have since found a solution (separate answer) using input from other answers here. 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. 2026-05-11T11:12:28+00:00Added an answer on May 11, 2026 at 11:12 am

    After suggestions from Kaarel and Robert, I was able to reach the following solution:

    Get the file modification date in C# and pass it to the XSLT processor as follows:

    XmlTextWriter tw = new XmlTextWriter(htmlPath, null); tw.Formatting = Formatting.Indented; tw.Indentation = 4;  XsltArgumentList args = new XsltArgumentList(); FileInfo fi = new FileInfo(xmlPath); args.AddParam('FileDate', string.Empty,    fi.LastWriteTime.Date.ToShortDateString());  XslCompiledTransform xslt = new XslCompiledTransform(); xslt.Load(xsltPath); xslt.Transform(xmlPath, args, tw); tw.Close(); 

    Then in the XSLT code, define and access that argument as a param as follows:

    <xsl:param name='FileDate'/>  <xsl:text>Revision Date: </xsl:text> <xsl:value-of select='$FileDate'/> 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to know a way to create an XML file using MySQL
I would like to know how to parse XML file from local in Titanium
I would like to know why is this: backup.sql file not being accepted by
Would like to know the best way to encrypt and decrypt an XML file
I would like to know how to remove all elements from an xml file
I would like to know if a file is open by any process (including
I would like to know how to run a file like this: Search-Mailbox -Identity
I would like to know how is possible to read a file placed in
I would like to know if it could be possible to add a file
I would like to know the on disk format of an RMAN backup file.

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.