El método DateTime.FromFileTime(Int64) se utiliza para convertir la hora especificada del archivo de Windows en una hora local equivalente.
Sintaxis: DateTime estático público FromFileTime (long fileTime);
Aquí, toma un tiempo de archivo de Windows expresado en ticks.Valor devuelto: este método devuelve un objeto que representa el equivalente en hora local de la fecha y la hora representadas por el parámetro fileTime.
Excepción: este método dará ArgumentOutOfRangeException si fileTime es menor que 0 o representa un tiempo mayor que MaxValue.
Los siguientes programas ilustran el uso del método DateTime.FromFileTime(Int64) :
Ejemplo 1:
// C# program to demonstrate the // DateTime.FromFileTime(Int64) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { try { // creating object of DateTime DateTime date1 = new DateTime(2010, 3, 14, 2, 30, 00); // converting 2500000000000 file // time represented in ticks // into DateTime format // using FromBinary() method DateTime date2 = DateTime.FromFileTime(2500000000000); // Display the date1 System.Console.WriteLine("DateTime before " + "operation: {0:y} {0:dd}", date1); // Display the date2 System.Console.WriteLine("\nDateTime after" + " operation: {0:y} {0:dd}", date2); } catch (ArgumentOutOfRangeException e) { Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } }
DateTime before operation: 2010 March 14 DateTime after operation: 1601 January 03
Ejemplo 2: para ArgumentOutOfRangeException
// C# program to demonstrate the // DateTime.FromFileTime() Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { try { // creating object of DateTime DateTime date1 = new DateTime(2010, 3, 14, 2, 30, 00); // converting -1 file time // represented in ticks // into DateTime format // using FromBinary() method DateTime date2 = DateTime.FromFileTime(-1); // Display the date1 System.Console.WriteLine("DateTime before " + "operation: {0:y} {0:dd}",date1); // Display the date2 System.Console.WriteLine("\nDateTime after" + " operation: {0:y} {0:dd}", date2); } catch (ArgumentOutOfRangeException e) { Console.WriteLine("fileTime is less than 0 "); Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } }
fileTime is less than 0 Exception Thrown: System.ArgumentOutOfRangeException
Referencia:
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA