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

Dosya Oluşturma

Projenize ConsoleApplication ekleyin. Aşağıdaki kodları eklediğiniz forma yazın.

using System;
using System.Collections.Generic;
using System.Text;
using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            FileInfo dosya = new FileInfo(@"C:\deneme.txt");
            FileStream fs = dosya.Create();

            Console.WriteLine("Dosya Oluşturulma Tarihi: {0}", dosya.CreationTime);
            Console.WriteLine("Adı: {0}", dosya.FullName);
            Console.WriteLine("Dosya Biçimi: {0}", dosya.Attributes.ToString());

            fs.Close();
            dosya.Delete();
            Console.ReadLine();
            return ;
          
        }
    }
}

//Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN