반응형 파일쓰기2 파일 쓰기 file write read append 파일쓰기 - 'w' 는 쓰기모드. 없으면 생성하고, 있으면 덮어씁니다. f = open('test01.txt', 'w') f.write('hello~\n') f.write('bryan!') f.close() 파일읽기 - 'r' 읽기모드. 파일이 없으면 오류발생합니다. f = open('test01.txt', 'r') allText = f.read() f.close() print(allText) - f.read(), f.readline(), f.readlines() 결과 1 2 >>> hello~ >>> bryan! cs - 이어 붙히기 f = open('test01.txt', 'a') f.write('\nappend something..') f.close() - 파일 읽기 readline() f = op.. 2019. 2. 14. C# File 쓰기 ( File, StreamWrite ) C# 파일 쓰기 System.IO.File System.IO.StreamWrite System.IO.File 을 이용한 파일 쓰기 using System.IO; 를 사용 합니다. 코드 string path = @"d:\tmp\test.txt"; string[] lines = { "hello", "nice to meet you", "bye~" }; File.WriteAllLines(path, lines); 결과 text.txt hello nice to meet you bye~ 코드 string allText = "welcome. http://hello-bryan.tistory.com" + "\nthis is next line"; File.WriteAllText(path, allText); 결과 text.t.. 2019. 1. 22. 이전 1 다음 728x90 반응형