using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace Study11
{
class App
{
//생성자
public App()
{
File.WriteAllText("./WriteAllText.txt", "새 파일을 만들고 이 문자열을 파일에 쓴 다음 파일을 닫는다!");
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace Study11
{
class App
{
//생성자
public App()
{
File.WriteAllText("./WriteAllText.txt", "새 파일을 만들고 이 문자열을 파일에 쓴 다음 파일을 닫는다!");
string contents = File.ReadAllText("./WriteAllText.txt");
Console.WriteLine(contents);
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace Study11
{
class App
{
//생성자
public App()
{
File.WriteAllText("./WriteAllText.txt", "새 파일을 만들고 이 문자열을 파일에 쓴 다음 파일을 닫는다!");
string contents = File.ReadAllText("./WriteAllText.txt");
Console.WriteLine(contents);
if (File.Exists("./ReadAllText.txt"))
{
string contents0 = File.ReadAllText("./ReadAllText.txt");
Console.WriteLine(contents0);
}
else
{
Console.WriteLine("파일이 없습니다. ");
}
}
}
}
'C# > 수업내용' 카테고리의 다른 글
[ C# 11일차 ] 변하지 않는 데이터 만들기 연습1 (0) | 2023.01.13 |
---|---|
[ C# 11일차 ] JSON 직렬화/역직렬화 연습 (0) | 2023.01.13 |
[ C# 10일차 ] File.Exists(String) (0) | 2023.01.13 |
[ C# 10일차 ] 실행시 매개변수 넣기 (0) | 2023.01.13 |
[ C# 10일차 ] 개체 이니셜라이져, 생성자 overload (0) | 2023.01.13 |