Reko.Core.Services.FileSystemServiceImpl.FileExists C# (CSharp) 메소드

FileExists() 공개 메소드

public FileExists ( string filePath ) : bool
filePath string
리턴 bool
        public bool FileExists(string filePath)
        {
            return File.Exists(filePath);
        }