Get File creation time and extension name : File Properties « File Directory Stream « C# / CSharp Tutorial

C# / CSharp Tutorial
1. Language Basics
2. Data Type
3. Operator
4. Statement
5. String
6. struct
7. Class
8. Operator Overload
9. delegate
10. Attribute
11. Data Structure
12. Assembly
13. Date Time
14. Development
15. File Directory Stream
16. Preprocessing Directives
17. Regular Expression
18. Generic
19. Reflection
20. Thread
21. I18N Internationalization
22. GUI Windows Forms
23. 2D
24. Design Patterns
25. Windows
26. XML
27. ADO.Net
28. Network
29. Directory Services
30. Security
31. unsafe
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorial
C# / C Sharp
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
C# / CSharp Tutorial » File Directory Stream » File Properties 
15. 8. 3. Get File creation time and extension name
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;

class MainClass
{
    static void Main(string[] args)
    {
        string[] files = Directory.GetFiles(@"c:\");
        foreach (string filename in files)
        {
            FileInfo file = new FileInfo(filename);
            Console.WriteLine("{0created on {1}, and is a {2file",
                file.Name, file.CreationTime, 
                file.Extension);
        }
    }
}
AUTOEXEC.BAT created on 27/08/2006 10:31:59 PM, and is a .BAT file
boot.ini created on 27/08/2006 3:15:49 PM, and is a .ini file
CONFIG.SYS created on 27/08/2006 10:31:59 PM, and is a .SYS file
hiberfil.sys created on 27/08/2006 11:07:25 PM, and is a .sys file
IO.SYS created on 27/08/2006 10:31:59 PM, and is a .SYS file
MSDOS.SYS created on 27/08/2006 10:31:59 PM, and is a .SYS file
NTDETECT.COM created on 04/08/2004 5:00:00 AM, and is a .COM file
ntldr created on 04/08/2004 5:00:00 AM, and is a  file
pagefile.sys created on 27/08/2006 3:07:15 PM, and is a .sys file
records.bin created on 03/03/2007 4:21:35 PM, and is a .bin file
Test.txt created on 24/03/2007 7:23:12 PM, and is a .txt file
test.xml created on 25/03/2007 2:17:21 PM, and is a .xml file
Testing.txt created on 25/03/2007 2:00:14 PM, and is a .txt file
xmlWriterTest.xml created on 25/03/2007 2:17:33 PM, and is a .xml file
15. 8. File Properties
15. 8. 1. Get FileInfo: file name, file exists, creation time, last write time, last access time
15. 8. 2. Get FileInfo: file size, file attribute list
15. 8. 3. Get File creation time and extension name
w__w_w._j__a_v_a___2__s___.___c__om___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.