Yazı Font Küçült Yazı Font Büyült

Klasör Oluşturulma Tarihini Öğrenmek

Bu örnekte, herhangi bir klasörün, oluşturulma tarihini öğreneceğiz.
İlk önce;
using System.IO; i ekleyin.
Daha sonra Button un Click yordamına aşağıdaki kodları ekleyin. Aşağıdaki Şekil 1 i inceleyin. C:\ deki test klasörünün oluşturulma tarihine bakacağız.

Resim1

Şekil 1

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;


namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string directoryString =Directory.GetCurrentDirectory() + @"\test";
            Directory.CreateDirectory(directoryString);
            DateTime dateTime = Directory.GetCreationTime(directoryString);
            MessageBox.Show("Klasör Oluşturulma Tarihi: " + dateTime);
            Directory.Delete(directoryString);


        }
    }
}
//Bir sonraki makalede buluşmak üzere. Bahadır ŞAHİN