Dev2.Common.Wrappers.FileWrapper.Exists C# (CSharp) Method

Exists() public method

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