×

C# Tutorial

Basics of .Net

C# Basics

C# Fundamentals

C# Operators

C# Loops

C# Type Conversions

C# Exception Handling

C# String Class

C# Arrays

C# List

C# Stack

C# Queue

C# Collections

C# Character Class

C# Class and Object

C# Namespaces

C# Delegates

C# Constructors

C# Inheritance

C# Operator Overloading

C# Structures

C# File Handling

C# Convert.ToInt32()

C# Int32 (int) Struct

C# DateTime Class

C# Uri Class

C# Database Connectivity

C# Windows

C# Other Topics

C# Q & A

C# Programs

C# Find O/P

C# - Get Last Write Time in UTC Format of File or Directory

learn how to get last write time in UTC format of a file or a directory using C# program?
Submitted by IncludeHelp, on November 03, 2017 [Last updated : March 26, 2023]

Given a file and a directory and we have to find their last write time in UTC using C# program.

To get last write time in UTC format of file or directory in C#, we use File.GetLastWriteTimeUtc() method.

File.GetLastWriteTimeUtc()

This is a method of "File" class, it is used to get the last write time in UTC format of given file/directory.

Syntax

File.GetLastWriteTimeUtc(path);

Parameter(s)

  1. path - Location of file or directory.

Last write time contains following detail:

  • Date
  • Month
  • Year
  • Hour
  • Minute
  • Second
  • AM/PM

C# program to get last write time in UTC format of file or directory

using System;
using System.IO;

namespace ConsoleApplication1 {
  class Program {
    static void Main() {
      DateTime dt1;
      DateTime dt2;

      dt1 = File.GetLastWriteTimeUtc("ABC.TXT");
      Console.WriteLine("Last Write Time in UTC of file(ABC.TXT) : " + dt1);

      dt2 = File.GetLastWriteTimeUtc("mydir");
      Console.WriteLine("Last Write Time in UTC of directory(mydir) : " + dt2);
    }
  }
}

Output

Last Write Time in UTC of file(ABC.TXT) : 10/31/2017 9:38:13 PM
Last Write Time in UTC of directory(mydir) : 10/31/2017 9:08:23 PM

Explanation

In the above program, we need to remember, when we use "File" class, System.IO namespace must be included in the program.

C# File Handling Programs »

Advertisement
Advertisement

Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.