GetFiles(시작경로, 검색패턴, 서브까지 할것인)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO; // 파일 스트림 처리
namespace OpenFile
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
listBox1.Items.Clear();
string[] Files = Directory.GetFiles(Environment.SystemDirectory, "*.bin",
SearchOption.TopDirectoryOnly);
foreach (string Name in Files)
{
listBox1.Items.Add(Name);
}
}
private void button2_Click(object sender, EventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
'객체지향언어 > C#' 카테고리의 다른 글
배틀넷 아뒤와 방제를 가지고 온다. (0) | 2009.08.09 |
---|---|
FileWatcher 예제 (0) | 2009.08.09 |
이진파일 저장 예제 (0) | 2009.08.08 |
메모장 흉내내기~ (0) | 2009.08.08 |
Stream을 이용한 파일 입출력 예제 (0) | 2009.08.08 |