文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

3-4 文件读写例子(2)

2023-01-31 01:09

关注
//=========================第一部分:主界面功能设计=============================

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Text;

using System.Windows.Forms;

using System.IO;

 

namespace FileOptionApplication

{

    public partial class Form6 : Form

    {

        public Form6()

        {

            InitializeComponent();

        }

        /// <summary>

        /// 读写文件操作

        /// </summary>

        private void button3_Click(object sender, EventArgs e)

        {

            int p = comboBox1.SelectedIndex;

            if (p == -1)

            {

                MessageBox.Show("请您选择文件写入方式", "警告信息", MessageBoxButtons.OK, MessageBoxIcon.Information);

            }

            else

            {

                string filecontent = richTextBox1.Text.Trim();

                MyFileOption myoption = new MyFileOption();

                string filepath = @"c:\1.txt";

                bool i = myoption.WriteTextFile(filepath, filecontent, Convert.ToInt16(comboBox1.SelectedIndex));

                if (i == true)

                {

                    MessageBox.Show("保存成功", "保存信息", MessageBoxButtons.OK, MessageBoxIcon.Information);

                }

                else

                {

                    MessageBox.Show("写入文件时出错", "错误", MessageBoxButtons.OK, MessageBoxIcon.Warning);

                }

            }

        }

        /// <summary>

        /// 文件磁盘操作

        /// </summary>

        private void button4_Click(object sender, EventArgs e)

        {

            Int16 p = Convert.ToInt16(comboBox2.SelectedIndex);

            if (p == -1)

            {

                MessageBox.Show("请您选择磁盘文件操作方式", "警告信息", MessageBoxButtons.OK, MessageBoxIcon.Information);

            }

            else

            {

                string sourcepath = "c:\\1.txt";

                string targetpath = "c:\\2.txt";

                MyFileOption myoption = new MyFileOption();

                bool i = myoption.DiskFileOption(sourcepath, targetpath, p);

                if (i == true)

                {

                    MessageBox.Show("磁盘文件操作成功", "保存信息", MessageBoxButtons.OK, MessageBoxIcon.Information);

                }

                else

                {

                    MessageBox.Show("磁盘文件操作时出错", "错误", MessageBoxButtons.OK, MessageBoxIcon.Warning);

                }

            }

        }

        private void button1_Click(object sender, EventArgs e)

        {

            richTextBox1.Text = null;

            richTextBox1.Focus();

        }

        /// <summary>

        /// 读出文本文件内容

        /// </summary>

        private void button2_Click(object sender, EventArgs e)

        {

            MyFileOption myoption = new MyFileOption();

            string filepath = @"c:\1.txt";

            Int16 i = 0;

            string filecontent = "";

            myoption.ReadTextFile(filepath, out i, out filecontent);

            if (i == 0)

            {

                MessageBox.Show(filecontent, "错误信息", MessageBoxButtons.OK, MessageBoxIcon.Information);

                richTextBox1.Text = filecontent;

            }

            else if (i == 1)

            {

                richTextBox1.Text = filecontent;

                MessageBox.Show("读取文件成功", "成功", MessageBoxButtons.OK, MessageBoxIcon.Warning);

            }

            else if (i == 2)

            {

                richTextBox1.Text = filecontent;

                MessageBox.Show(filecontent, "错误信息", MessageBoxButtons.OK, MessageBoxIcon.Warning);

            }

        }

        /// <summary>

        /// 文件基本属性设置

        /// </summary>

        private void button5_Click(object sender, EventArgs e)

        {

            string filepath = @"c:\1.txt";

            if (checkBox1.Checked && checkBox2.Checked)

            {

                File.SetAttributes(filepath, FileAttributes.ReadOnly | FileAttributes.Hidden);

                MessageBox.Show("文件已经改为只读且隐藏", "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);

            }

            else

            {

                if (!checkBox1.Checked && !checkBox2.Checked)

                {

                    File.SetAttributes(filepath, FileAttributes.Archive);

                    MessageBox.Show("文件已经改为正常", "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);

                }

                else

                {

                    if (checkBox2.Checked)

                    {

                        File.SetAttributes(filepath, FileAttributes.ReadOnly);

                        MessageBox.Show("文件已经改为只读", "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);

                    }

                    if (checkBox1.Checked)

                    {

                        File.SetAttributes(filepath, FileAttributes.Hidden);

                        MessageBox.Show("文件已经改为隐藏", "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);

                    }

                }

            }

        }

        /// <summary>

        /// 文件夹操作

        /// </summary>

        private void button6_Click(object sender, EventArgs e)

        {

            Int16 p = Convert.ToInt16(comboBox3.SelectedIndex);

            if (p == -1)

            {

                MessageBox.Show("请您选择文件夹操作方式", "警告信息", MessageBoxButtons.OK, MessageBoxIcon.Information);

            }

            else

            {

                string sourcepath = @"c:\1";

                string targetpath = @"c:\2";

                MyFileOption myoption = new MyFileOption();

                string[] filesname = null;

                bool i = myoption.DirectoryOption(sourcepath, targetpath, p, out filesname);

                if (i == true)

                {

                    MessageBox.Show("磁盘文件夹操作成功", "保存信息", MessageBoxButtons.OK, MessageBoxIcon.Information);

                    if (filesname != null)

                    {

                        foreach (string somestring in filesname)

                        {

                            richTextBox1.Text += somestring + "\r\n";

                        }

                    }

                }

                else

                {

                    MessageBox.Show("磁盘文件夹操作时出错", "错误", MessageBoxButtons.OK, MessageBoxIcon.Warning);

                }

            }

        }

    }

}

u实验步骤(3):

向项目中添加名为FileOption.cs的类文件,并准备填写关于文件操作的各种方法,如图3-8所示:

图3-8  建立FileOption.cs图
阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯