using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace HDDDolulukOrani
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
static long bilgi(string driveName)
{
foreach (DriveInfo drive in DriveInfo.GetDrives())
{
if (drive.IsReady && drive.Name == driveName)
{
return ((drive.TotalSize - drive.TotalFreeSpace) * 100) / drive.TotalSize;
}
}
return -1;
}
private void button1_Click(object sender, EventArgs e)
{
try
{
long yuzzde = bilgi(comboBox1.Text);
int yuzde = Convert.ToInt32(yuzzde);
if (yuzzde != -1)
{
label2.Text = comboBox1.Text + " Diski %" + yuzzde + " Oranında Dolu.";
progressBar1.Value = yuzde;
}
else
{
MessageBox.Show("Disk Bulunamadı.", "Hata");
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message,"Hata");
}
}
}
}
C# ile çok fonksiyonlu hesap makinesi yapımı kodları....
TRCodeRooTeR 8441 1 2019-12-22 05:12:22C# ile yazılmış Bankamatik Otomasyonu program kodları...
TRCodeRooTeR 6990 1 2020-11-16 10:17:29