mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
40 lines
901 B
C#
40 lines
901 B
C#
using System.Diagnostics;
|
|
using System.IO;
|
|
using NAppUpdate.Framework.Utils;
|
|
|
|
namespace Wox.UpdateFeedGenerator
|
|
{
|
|
public class FileInfoEx
|
|
{
|
|
private readonly FileInfo myFileInfo;
|
|
private readonly string myFileVersion;
|
|
private readonly string myHash;
|
|
|
|
public FileInfo FileInfo
|
|
{
|
|
get { return myFileInfo; }
|
|
}
|
|
|
|
public string FileVersion
|
|
{
|
|
get { return myFileVersion; }
|
|
}
|
|
|
|
public string Hash
|
|
{
|
|
get { return myHash; }
|
|
}
|
|
|
|
public string RelativeName { get; private set; }
|
|
|
|
public FileInfoEx(string fileName,int rootDirectoryLength)
|
|
{
|
|
myFileInfo = new FileInfo(fileName);
|
|
myFileVersion = FileVersionInfo.GetVersionInfo(fileName).FileVersion;
|
|
if (myFileVersion != null) myFileVersion = myFileVersion.Replace(", ", ".");
|
|
myHash = FileChecksum.GetSHA256Checksum(fileName);
|
|
RelativeName = fileName.Substring(rootDirectoryLength + 1);
|
|
}
|
|
}
|
|
}
|