C# collapses file I/O into ONE-LINE static method calls on the File class (File.WriteAllText("filename.txt", writeText); / File.ReadAllText("filename.txt")) — a fundamentally different model from C++'s stream-object approach in [[CPP Files]] (create an ofstream/ifstream object, use <</getline(), explicitly .close() it) or C's fopen/fprintf/fclose triad; there's no open/close lifecycle to manage at all in the basic C# examples shown here — File.WriteAllText() opens, writes, AND closes the file internally in a single call, trading the C-family's manual resource-management ceremony for a higher-level, one-shot convenience API. [S1]
🧠 핵심 개념 (Core concepts)
System.IO namespace — must be imported (using System.IO;) to access the File class. [S1]
File class — a static class (no instantiation, no new File()) offering methods for creating/reading/writing/deleting files. [S1]
Key methods: AppendText() (append to end), Copy() (copy a file), Create() (create/overwrite), Delete(), Exists() (test existence), ReadAllText() (read entire contents), Replace() (replace one file's contents with another's), WriteAllText() (create/overwrite AND write in one call). [S1]
No explicit open/close — unlike C++'s ofstream/ifstream objects (which must be created, used, then .close()d) or C's fopen/fclose pair, File.WriteAllText() and File.ReadAllText() handle the entire file lifecycle internally in a single static call. [S1]
파일 생명주기 관리 방식이 C/C++와 근본적으로 다름: [[CPP Files]]는 ofstream/ifstream 객체를 만들고 <</getline()으로 쓰고 읽은 뒤 반드시 .close()를 호출해야 했고, C도 fopen/fprintf/fclose 3단계가 필요했지만, C#은 File.WriteAllText()/File.ReadAllText()라는 정적 메서드 한 번 호출로 열기-쓰기(또는 읽기)-닫기가 전부 내부적으로 처리된다는 점이 확인됨 — 객체 생성이나 명시적 close 호출이 전혀 없음. [S1]
File은 인스턴스화되지 않는 정적 클래스: ofstream/ifstream처럼 객체를 만드는 방식이 아니라, File.MethodName()처럼 클래스 이름으로 직접 호출하는 정적 메서드 모음이라는 점이 C++ 파일 클래스들과의 설계 차이로 확인됨. [S1]
🛠️ 적용 사례 (Applied in summary)
"Hello World!"라는 문자열을 filename.txt에 WriteAllText()로 쓰고, 곧바로 ReadAllText()로 읽어 출력하는 예제가 원문에서 직접 실전 활용 사례로 제시됨. [S1]
💻 코드 패턴 (Code patterns)
One-line file write and read — no explicit open/close lifecycle (C#):
usingSystem.IO;stringwriteText="Hello World!";File.WriteAllText("filename.txt",writeText);// create + write + close, all in one callstringreadText=File.ReadAllText("filename.txt");// open + read + close, all in one callConsole.WriteLine(readText);// "Hello World!"
✅ 검증 상태 및 신뢰도
상태: draft
검증 단계: conceptual
출처 신뢰도: B (W3Schools — widely used educational reference, not a primary standards body)