using System;Yazar: TRCodeRooTeR Tarih: 2023-11-28 07:46:38 Görüntüleme: 466 Yorum: 0
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 GizliKlasorOlusturma
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
string adres;
private void button1_Click(object sender, EventArgs e)
{
FolderBrowserDialog file = new FolderBrowserDialog();
file.ShowDialog();
adres = file.SelectedPath;
MessageBox.Show("Klasörün Oluşturulacağı Yer Seçilmiştir.", "Bilgi");
}
private void button2_Click(object sender, EventArgs e)
{
if (!Directory.Exists(adres+""+textBox1.Text))
{
DirectoryInfo di = Directory.CreateDirectory(adres + "" + textBox1.Text);
di.Attributes = FileAttributes.Directory | FileAttributes.Hidden | FileAttributes.System;
MessageBox.Show("Klasörünüz "+adres + "" + textBox1.Text + " adresine oluşturulmuştur.","Bilgi");
}
}
}
}
C# ile çok fonksiyonlu hesap makinesi yapımı kodları....
TRCodeRooTeR 8443 1 2019-12-22 05:12:22C# ile yazılmış Bankamatik Otomasyonu program kodları...
TRCodeRooTeR 6990 1 2020-11-16 10:17:29