컴퓨터 지식 네트워크 - 컴퓨터 지식 - C# 폴더에 있는 모든 파일의 파일 이름을 가져옵니다.

C# 폴더에 있는 모든 파일의 파일 이름을 가져옵니다.

1. C#에서는 System.IO.Directory.GetFiles를 사용하여 모든 파일을 얻을 수 있습니다.

2. C# 샘플 프로그램: (양식에 버튼1 및 listBox1 추가) using?System;

using?System.Collections.Generic;

using? System.ComponentModel;

using?System.Data;

using?System.드로잉;

using?System.Text;

using?System.Windows.Forms;

namespace?WindowsApplication1

{

public?partial?class?Form1?:?Form

{

공개?Form1()

{

InitializeComponent();

}

비공개? void?button1_Click(object?sender,?EventArgs?e)

{ listBox1.Items.AddRange?(System.IO.Directory.GetFiles("d:\\web"));

}

}

}

上篇: 16 투관 280 은 어떠세요? 下篇: 2k 17 프로모델은 어떻게 신발을 바꿀까요?
관련 내용