Find out the file age : Date Operation « Date Time « VB.Net






Find out the file age

  

Module Example
    Public Sub Main()
    End Sub
    Public Function FileAge(ByVal fileCreationTime As Long) As System.TimeSpan
       Dim now As System.DateTime
       now = System.DateTime.Now
    
       Try
          Dim fCreationTime As System.DateTime
          Dim fAge As System.TimeSpan
          fCreationTime = System.DateTime.FromFileTime(fileCreationTime)
          fAge = now.Subtract(fCreationTime)
          Return fAge
       Catch exp As ArgumentOutOfRangeException
          Throw
       End Try
    End Function
End Module

   
    
  








Related examples in the same category

1.Add time (days, hours) to current timeAdd time (days, hours) to current time
2.Date Time SubtractionDate Time Subtraction
3.Multiply Time SpanMultiply Time Span
4.Date Time and TimeSpan DemoDate Time and TimeSpan Demo
5.Add a day, a month and a year to a Date
6.Date = #11/4/2010 1:30:00AM#
7.CDate("10/26/2010 1:32:00 PM")
8.Arithmetic Operations with Dates and Times
9.Calculate the interval between the two dates
10.Display the date using the current (en-US) culture
11.Change the current culture to fr-FR and display the date
12.Change the current culture to ja-JP and display the date
13.Allow a leading space in the date string
14.Represents an instant in time, typically expressed as a date and time of day.
15.Create Date object from String
16.Date.Now, UtcNow and Today
17.Create Date from date string with time
18.Convert Date to string with fr-FR culture
19.Adds time interval to a specified date and time, yielding a new date and time.
20.Compare the difference between two Date value with Ticks
21.Compares two Date values
22.Gets the date component from String
23.Gets the day of the month from Date
24.Gets the milliseconds component of the date represented by this instance.
25.Ticks from a Date
26.Difference between local time and UTC
27.Display the ticks-per-time-unit fields
28.Add one and half Milliseconds
29.Gets the day of the week represented by this instance.
30.Returns the number of days in the specified month and year.
31.Returns an indication whether the specified year is a leap year.
32.whether time is based on local time, Coordinated Universal Time (UTC), or neither.
33.Reverse month and day to conform to the fr-FR culture