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

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...