// 디렉토리 안에 있는 모든 파일을 읽는다
public static void Import(string Path, string ext, ref List<WeatherInfo> tList)
{
//if (File.Exists(Path))
if (Directory.Exists(Path))
{
Console.WriteLine(Path);
string[] files = Directory.GetFiles(Path, ext);
foreach (var file in files)
Import(file, ref tList);
}
}
// 개별 파일을 읽는다
public static void Import(string filename, ref List<WeatherInfo> vList)
{
// 파일이 존재하면 읽는다.
}