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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:42:09+00:00 2026-05-26T08:42:09+00:00

I have come across this problem several times in which I would like to

  • 0

I have come across this problem several times in which I would like to have multiple versions of the same file in the same directory. The way I have been doing it using C# is by adding a time stamp to the file name with something like this DateTime.Now.ToString().Replace('/', '-').Replace(':', '.').
Is there a better way to do this?

  • 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-26T08:42:10+00:00Added an answer on May 26, 2026 at 8:42 am

    You can use DateTime.ToString Method (String)

    DateTime.Now.ToString("yyyyMMddHHmmssfff")

    or string.Format

    string.Format("{0:yyyy-MM-dd_HH-mm-ss-fff}", DateTime.Now);

    or Interpolated Strings

    $"{DateTime.Now:yyyy-MM-dd_HH-mm-ss-fff}"

    There are following custom format specifiers y (year), M (month), d
    (day), h (hour 12), H (hour 24), m (minute), s (second), f (second
    fraction), F (second fraction, trailing zeroes are trimmed), t (P.M or
    A.M) and z (time zone).

    With Extension Method

    Usage:

    string result = "myfile.txt".AppendTimeStamp();
    //myfile20130604234625642.txt
    

    Extension method

    public static class MyExtensions
    {
        public static string AppendTimeStamp(this string fileName)
        {
            return string.Concat(
                Path.GetFileNameWithoutExtension(fileName),
                DateTime.Now.ToString("yyyyMMddHHmmssfff"),
                Path.GetExtension(fileName)
                );
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I frequently come across this problem. I have a file: something something2 something3 which
Several times I have come across cases where the for-each loop would cause problems,
I am using $SUB for the first time and have come across this problem.
My co-worker and I have come across this warning message a couple times recently.
I have come across this problem in a calculation I do in my code,
This could be weird, Have you ever come across a blog which you wanted
I have an simple question (?) about SQL. I have come across this problem
I have come across this problem in the past but never solved it. I
While using boost::threads I have come across this interruption problem. When I do a
I've come across the same issue several times already. When I display one block

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.