91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c# winform中如何實現文件操作

c#
小樊
109
2024-08-31 00:42:54
欄目: 編程語言

在C# WinForm中,可以使用.NET Framework提供的類庫來實現文件操作。這里有一些常見的文件操作示例:

  1. 讀取文本文件:
using System;
using System.IO;

namespace FileOperation
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void btnReadFile_Click(object sender, EventArgs e)
        {
            string filePath = "example.txt";
            if (File.Exists(filePath))
            {
                using (StreamReader sr = new StreamReader(filePath))
                {
                    string content = sr.ReadToEnd();
                    MessageBox.Show(content);
                }
            }
            else
            {
                MessageBox.Show("文件不存在!");
            }
        }
    }
}
  1. 寫入文本文件:
private void btnWriteFile_Click(object sender, EventArgs e)
{
    string filePath = "output.txt";
    string content = "Hello, World!";

    using (StreamWriter sw = new StreamWriter(filePath))
    {
        sw.WriteLine(content);
    }

    MessageBox.Show("文件已寫入!");
}
  1. 創建文件夾:
private void btnCreateFolder_Click(object sender, EventArgs e)
{
    string folderPath = @"C:\example_folder";
    if (!Directory.Exists(folderPath))
    {
        Directory.CreateDirectory(folderPath);
        MessageBox.Show("文件夾已創建!");
    }
    else
    {
        MessageBox.Show("文件夾已存在!");
    }
}
  1. 刪除文件夾:
private void btnDeleteFolder_Click(object sender, EventArgs e)
{
    string folderPath = @"C:\example_folder";
    if (Directory.Exists(folderPath))
    {
        Directory.Delete(folderPath, true); // 第二個參數表示是否刪除子目錄和文件
        MessageBox.Show("文件夾已刪除!");
    }
    else
    {
        MessageBox.Show("文件夾不存在!");
    }
}
  1. 遍歷文件夾:
private void btnListFiles_Click(object sender, EventArgs e)
{
    string folderPath = @"C:\example_folder";
    if (Directory.Exists(folderPath))
    {
        string[] files = Directory.GetFiles(folderPath);
        foreach (string file in files)
        {
            MessageBox.Show(file);
        }
    }
    else
    {
        MessageBox.Show("文件夾不存在!");
    }
}

這些示例展示了如何在C# WinForm應用程序中執行基本的文件操作。你可以根據需要修改這些代碼以滿足你的需求。

0
南召县| 大兴区| 宁陕县| 铜鼓县| 无为县| 乳源| 望城县| 杭州市| 丘北县| 怀远县| 盐源县| 台中市| 诏安县| 合山市| 永和县| 钟祥市| 宁阳县| 含山县| 呼玛县| 克拉玛依市| 玉龙| 达孜县| 定日县| 湘潭县| 涟水县| 和林格尔县| 登封市| 肥乡县| 涪陵区| 奉贤区| 巍山| 绍兴市| 永宁县| 平果县| 邢台市| 和平县| 册亨县| 苏尼特左旗| 交城县| 筠连县| 泸西县|