Baseline.FileHashingExtensions.GetModifiedDateFileText C# (CSharp) Method

GetModifiedDateFileText() public static method

public static GetModifiedDateFileText ( this filename ) : string
filename this
return string
        public static string GetModifiedDateFileText(this string filename)
        {
            var fullPath = filename.ToFullPath();
            return fullPath + ":" + File.GetLastWriteTime(fullPath).Ticks;
        }