Bari.Core.Generic.IFileSystemDirectoryContracts.Exists C# (CSharp) Method

Exists() public method

Checks whether a file exists at the given relative path
public Exists ( string relativePath ) : bool
relativePath string Path to the file to check, relative to this directory
return bool
        public bool Exists(string relativePath)
        {
            Contract.Requires(!String.IsNullOrWhiteSpace(relativePath));
            return false; // dummy value
        }