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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T19:37:57+00:00 2026-05-10T19:37:57+00:00

Is there a relatively simple way in nant, without writing a custom task, to

  • 0

Is there a relatively simple way in nant, without writing a custom task, to get the name of the newest folder in a certain directory? Recursion is not needed. I have been trying to do it with directory::get-creation-time and a foreach loop and if statements, yada yada. It’s too complex, and I’m about to create a custom task instead. However, I suspect there is some simpler way to do it via existing nant features.

  • 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-10T19:37:58+00:00Added an answer on May 10, 2026 at 7:37 pm

    I believe you’re correct in stating that doing this in a pure nant fashion might pose to be messy, especially the way properties work in nant. If you don’t want to write a custom task, you can always use the script task. For example:

    <?xml version='1.0'?> <project name='testing' basedir='.'>      <script language='C#' prefix='test' >         <code>             <![CDATA[             [Function('find-newest-dir')]             public static string FindNewestDir( string startDir ) {                 string theNewestDir = string.Empty;                 DateTime theCreateTime = new DateTime();                 DateTime theLastCreateTime = new DateTime();                 string[] theDirs = Directory.GetDirectories( startDir );                 for ( int theCurrentIdx = 0; theCurrentIdx < theDirs.Length; ++theCurrentIdx )                 {                     if ( theCurrentIdx != 0 )                     {                         DateTime theCurrentDirCreateTime = Directory.GetCreationTime( theDirs[ theCurrentIdx ] );                         if ( theCurrentDirCreateTime >= theCreateTime )                         {                             theNewestDir = theDirs[ theCurrentIdx ];                             theCreateTime = theCurrentDirCreateTime;                         }                     }                     else                     {                         theNewestDir = theDirs[ theCurrentIdx ];                         theCreateTime = Directory.GetCreationTime( theDirs[ theCurrentIdx ] );                     }                 }                 return theNewestDir;             }             ]]>         </code>     </script>      <property name='dir' value='' overwrite='false'/>     <echo message='The newest directory is: ${test::find-newest-dir( dir )}'/>  </project> 

    With this, one should be able to call the function to get the newest directory. The implementation of the actual function could be changed to be anything (optimized a bit more or whatever), but I’ve included a quick one for reference on how to use the script task. It produces output like the following:

     nant -D:dir=c:\  NAnt 0.85 (Build 0.85.2478.0; release; 10/14/2006) Copyright (C) 2001-2006 Gerry Shaw http://nant.sourceforge.net  Buildfile: file:///C:/tmp/NAnt.build Target framework: Microsoft .NET Framework 2.0     [script] Scanning assembly 'jdrgmbuy' for extensions.      [echo] The newest directory is: C:\tmp  BUILD SUCCEEDED  Total time: 0.3 seconds. 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a relatively simple way to change all the data in a JTable?
Is there a relatively straightforward way to get the intersection of two DataTables in
I'm sure this is a relatively simple question, and there must be a good
I'm relatively new to Javascript and was wondering if there's a quick way to
Are there any good books for a relatively new but not totally new *nix
I'm working on a relatively small asp.net web application and am wondering if there
Is there any way to use Relative path when configuring subversion externals. For example
There is a conversion process that is needed when migrating Visual Studio 2005 web
There are two weird operators in C#: the true operator the false operator If

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.