isimonersileri

Projenize Yardım


İletişim Formu


C# Gizli ve Sistem Klasörü Oluşturmak

Csharp programlama dili kullanarak bilgisayarınızda çok gizli klasörler oluşturabilir ve önemli bilgilerini saklayabilirsiniz.
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 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");
            }
        }
    }
}


Yazar: TRCodeRooTeR    Tarih: 2023-11-28 07:46:38   Görüntüleme: 466   Yorum: 0

Benzer Popüler Yayınlarımızı da İnceleyin;


C# Gelişmiş Çok Fonksiyonlu Hesap Makinesi Kodları

C# ile çok fonksiyonlu hesap makinesi yapımı kodları....

TRCodeRooTeR 8443 1
2019-12-22 05:12:22


C# Bankamatik Otomasyonu Yapımı ve Kodları

C# ile yazılmış Bankamatik Otomasyonu program kodları...

TRCodeRooTeR 6990 1
2020-11-16 10:17:29




Yorumunuzu Bırakın

Adınız:
E-Mail:
Yorumunuz:



Günlük Görüntüleme

Toplam Görüntüleme

Kayıt Ol

Giriş Yap
Üye Ol

Paylaş

Copyright © 2017 - 2024 Designed By WebMaster All Rights Reserved.