Reko.Core.Services.FileSystemServiceImpl.FileExists C# (CSharp) Method

FileExists() public method

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