程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#:文件/注冊表/線程的操作

C#:文件/注冊表/線程的操作

編輯:C#入門知識


文件的操作:(file與fileinfo,前者是靜態方法,執行安全檢查,適合對一個的操作)
 
1.1.create:
 
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Threading.Tasks; 9 using System.Windows.Forms; 10 using System.IO; //這個命名空間包含了對文件操作的類 11 12 namespace WindowsFormsApplication2 13 { 14 public partial class Form1 : Form 15 { 16 public Form1() 17 { 18 InitializeComponent(); 19 } 20 21 private void Form1_Load(object sender, EventArgs e) 22 { 23 24 } 25 26 private void button1_Click(object sender, EventArgs e) 27 { 28 //判斷是否有輸入的文件地址 29 if (textBox1.Text == string.Empty) 30 { 31 this.toolStripStatusLabel1.Text = "請在紅色的小點旁邊,輸入要創建的文件。"; 32 errorProvider1.SetError(textBox1, "輸入要創建的文件"); 33 } 34 else 35 { 36 if (File.Exists(textBox1.Text.Trim())) //判斷是否有此文件 37 { toolStripStatusLabel1.Text = "已經存在此文件了。"; } 38 else 39 { 40 File.Create(textBox1.Text); //靜態方法創建文件 41 toolStripStatusLabel1.Text = "文件創建成功!" + textBox1.Text + " "; 42 } 43 44 } 45 } 46 47 private void button2_Click(object sender, EventArgs e) 48 { 49 if (textBox2.Text == string.Empty) 50 { 51 //以下2句為提示: 52 this.toolStripStatusLabel1.Text = "請在紅色的小點旁邊,輸入要創建的文件。"; 53 errorProvider1.SetError(textBox1, "輸入要創建的文件"); 54 } 55 else 56 { 57 FileInfo fi = new FileInfo(textBox2.Text.Trim()); //實例化 58 if (fi.Exists) //同上也是判斷 59 { 60 toolStripStatusLabel1.Text = "已經存在此文件了。"; 61 } 62 else 63 { fi.Create(); } //創建該文件 64 } 65 } 66 } 67 }

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved