반응형

텍스트파일

C#, 텍스트 파일 읽기 저장 StreamReader StreamWriter File.WriteAllText File.WriteAllLines ReadLine

C#에서 텍스트 파일을 읽고 저장하는 다양한 방법이 있습니다. 일반적으로 System.IO 네임스페이스를 사용하여 파일을 처리할 수 있습니다. 아래 몇 가지 방법을 설명하겠습니다. 1. File.ReadAllText 및 File.WriteAllText텍스트 파일의 모든 내용을 한 번에 읽거나 저장할 때 사용합니다.using System.IO; // 파일 읽기string content = File.ReadAllText("파일경로.txt");Console.WriteLine(content); // 파일 저장 File.WriteAllText("파일경로.txt", "저장할 내용"); 예제using System;//using System.Collections.Generic;//using System.Linq;//u..

C# 2024.10.12

(C#) 텍스트 파일에 저장하기 생성하기

다음 코드는 C#에서 텍스트 파일을 생성하고, 파일에 텍스트를 저장하는 코드입니다. 1. File 정적(static) 클래스 사용하기 using System; using System.IO; public class Program { public static void Main() { string textfile = @"c:\temp\MyTest.txt"; // 파일이 존재하지 않으면 if (!File.Exists(textfile)) { // Create a file to write to. using (StreamWriter sw = File.CreateText(textfile)) { sw.WriteLine("Hello"); sw.WriteLine("And"); sw.WriteLine("Welcome"); }..

C# 2023.06.02

(C#) 텍스트 파일 읽기 ReadLine ReadToEnd

C#에서 텍스트 파일을 읽어 들이는 방법입니다. 1. 한 줄씩 읽기 다음 코드는 ReadLine 메서드를 이용해서 텍스트 파일에서 한 줄씩 읽는 코드입니다. using System; using System.IO; public class Program { public static void Main() { string path = @"c:\temp\text.txt"; string line; using (StreamReader sr = new StreamReader(path)) { while ((line = sr.ReadLine()) != null) { Console.WriteLine(line); } } } } 2. 한번에 끝까지 읽기 다음 코드는 텍스트 파일은 한꺼번에 읽는 코드입니다. using Syste..

C# 2023.06.02
반응형