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

Ask A Question

Stats

  • Questions 99k
  • Answers 99k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I was this " close. I had tried to back… May 11, 2026 at 7:43 pm
  • Editorial Team
    Editorial Team added an answer Your best bet is probably to create a Pair<T1, T2>… May 11, 2026 at 7:43 pm
  • Editorial Team
    Editorial Team added an answer Another approach, that might be easier to work with, is… May 11, 2026 at 7:43 pm

Related Questions

Is there a relatively simple way to change all the data in a JTable?
I have been tasked with implementing a PKI library in C# for a company
I am a COM object written in ATL that is used from a C++
Relatively new to rails and trying to model a very simple family tree with

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.