亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
长白| 锡林浩特市| 玛沁县| 鲁山县| 沁阳市| 富平县| 江孜县| 茂名市| 慈溪市| 麦盖提县| 芷江| 巴南区| 山阴县| 普安县| 泰兴市| 容城县| 济源市| 共和县| 赤峰市| 铅山县| 玛多县| 平罗县| 玉田县| 柳河县| 滨海县| 凤台县| 漯河市| 新乡市| 沛县| 赣州市| 邓州市| 当涂县| 瓦房店市| 新民市| 博湖县| 喜德县| 三门峡市| 怀来县| 太白县| 漯河市| 凤山市|