C# x 判斷路經尋找 x 檔案數量 x 依副檔名找檔名
自動列印標籤用
Form裡面要有 :
Button *1
Label *1
/////////////////////以下 程式碼/////////////////////
using System;
using System.IO;
using System.Windows.Forms;
namespace WindowsFormsApplication32
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
DirectoryInfo dirInfo = new DirectoryInfo(@"D:\test");
DataGridView dgv = new DataGridView();
int txtFileCount = dirInfo.GetFiles("*.txt").Length;
if (txtFileCount != 0)
{
label1.Text = dirInfo.GetFiles("*.txt", SearchOption.AllDirectories)[0].ToString();
}
}
}
}
/////////////////////以上 程式碼/////////////////////
執行畫面
參考資料 : https://dotblogs.com.tw/dc690216/2009/09/17/10684
http://ithelp.ithome.com.tw/articles/10029065
沒有留言:
張貼留言