EpLibrary.cs.FolderHelper.IsFileExist C# (CSharp) Method

IsFileExist() public static method

Check if the given file path exists
public static IsFileExist ( String path ) : bool
path String the file path to check
return bool
        public static bool IsFileExist(String path)
        {
            return File.Exists(path);
        }