C# / .NET에 파일이 있는지 확인하는 방법은 무엇입니까?
파일의 경로가 포함된 문자열을 테스트하여 해당 파일의 존재 여부를 확인하고 싶습니다(예:-e
Perl 또는 에서 테스트합니다.os.path.exists()
C#에 포함됩니다.
사용:
File.Exists(path)
MSDN: http://msdn.microsoft.com/en-us/library/system.io.file.exists.aspx
편집: 시스템에서.IO
using System.IO;
if (File.Exists(path))
{
Console.WriteLine("file exists");
}
시스템.IO.File.Exists(경로)
전체 경로를 입력으로 지정합니다.상대 경로를 피합니다.
return File.Exists(FinalPath);
WinForms 및 내 파일 사용 방법을 사용합니다.다음은 존재(문자열 경로)입니다.
public bool FileExists(string fileName)
{
var workingDirectory = Environment.CurrentDirectory;
var file = $"{workingDirectory}\{fileName}";
return File.Exists(file);
}
fileName에는 다음과 같은 확장자가 포함되어야 합니다.myfile.txt
File.Exists(Path.Combine(_workDir, _file));
언급URL : https://stackoverflow.com/questions/38960/how-to-find-out-if-a-file-exists-in-c-sharp-net
'source' 카테고리의 다른 글
Angular Reactive Forms: 확인란 값 배열을 생성합니까? (0) | 2023.05.20 |
---|---|
Xcode에서 파일을 실제 폴더로 이동 (0) | 2023.05.20 |
Git에서 당김이 필요한지 확인합니다. (0) | 2023.05.20 |
Nullable 간의 차이점은 무엇입니까?값 또는 Null 가능!=이(가) null입니까? (0) | 2023.05.20 |
문자열 컬렉션을 목록으로 변환 (0) | 2023.05.20 |