반응형
1. 파일 읽기
- 파일 읽기 테스트를 위해서 ReadTest.txt 파일을 하나 만듬.
- 사용 핵심함수
System.IO.File.ReadAllLines( path ) : 해당 함수 사용, 반환 값 : string[]
- 예제코드
class Program
{
static void Main(string[] args)
{
ReadFileRes();
}
static public void ReadFileRes()
{
string path = @"D:\ReadTest.txt";
string[] textValuse = System.IO.File.ReadAllLines(path);
List<string> restext = new List<string>();
if (textValuse.Length > 0)
{
foreach (string item in textValuse)
{
Console.WriteLine(item);
}
}
}
}
- 콘솔창 결과
2. 파일 쓰기
- 파일에 제대로 쓰여지는지 확인.
- 사용 핵심함수
System.IO.File.WriteAllLines( savepath, text ) : savepath : 저장할 경로와 파일명, text : write할 Text
- 예제 코드
class Program
{
static void Main(string[] args)
{
WriteFileRes();
}
static public void WriteFileRes()
{
string savepath = @"D:\MyProject\WriteTest.txt";
string[] textValuse = { "adfadf", "test1","test2" };
System.IO.File.WriteAllLines(savepath, textValuse);
}
}
- 결과
반응형
'프로그래밍언어 > C#' 카테고리의 다른 글
[C#] WPF TextBox 멀티라인, 싱글라인 설정 방법 (0) | 2022.01.27 |
---|---|
[C#] WPF 창 크기 고정 (0) | 2022.01.27 |
[C#]WPF Textbox 숫자 입력 및 글자수 제한, 정규식 이용 (0) | 2022.01.27 |
WinForm과 WPF 차이 (0) | 2020.12.06 |
댓글