https://learn.microsoft.com/ko-kr/dotnet/api/system.text.regularexpressions.regex?view=net-7.0
Regex csvRegex = new Regex(@"^(.*\.(csv$))");
Regex xlsxRegex = new Regex(@"^(.*\.(xlsx$))");
if (xlsRegex.IsMatch(filePath))
{
ChangeExcelToXls(filePath);
}
else if (xlsxRegex.IsMatch(filePath))
{
}
'C#' 카테고리의 다른 글
null 상태 정적 분석에 대한 특성 (0) | 2021.07.13 |
---|---|
현재 시간을 초로 변환 (0) | 2021.06.18 |
func , Action 델리게이트 (0) | 2019.10.23 |
오브젝트 복사 (0) | 2019.09.24 |
async 및 await를 사용한 비동기 프로그래밍 - 6 (재진입막기) (0) | 2019.09.11 |