/// Retired (Redundant) ///// <summary>Opens Directory in Windows Explorer containing FilePath</summary> ///// <param name="FilePath">Path to file, extracting the folder path to open</param> //public static bool OpenFileDir(this string FilePath) //{ // _AHK ahk = new _AHK(); // return ahk.OpenFileDir(FilePath); //} // File Compare #region === File Compare / Hash === /// <summary> /// Returns Hash value for File /// </summary> /// <param name="FilePath"></param> /// <returns></returns> public static string FileHash(this string FilePath) { _AHK ahk = new _AHK(); return(ahk.FileHash(FilePath)); }