PowerShell-将FileTime转换为HexString

时间:2018-11-22 20:40:14

标签: c# string powershell hex filetime

搜索完互连网后,我设法创建了一个C#类来获取FileTimeUTC十六进制字符串。

The name 'DateTime' does not exist in the current context

+ FullyQualifiedErrorId : SOURCE_CODE_ERROR,Microsoft.PowerShell.Commands.AddTypeCommand

Add-Type : Cannot add type. Compilation errors occurred.

+ CategoryInfo          : InvalidData: (:) [Add-Type], InvalidOperationException
+ FullyQualifiedErrorId : COMPILER_ERRORS,Microsoft.PowerShell.Commands.AddTypeCommand

对于PowerShell,我尝试使用以下相同代码:

python

问题是我收到一些错误消息:

py

我不知道如何使此C#代码对PowerShell有效,并且需要一个可行的解决方案。我不知道为什么PowerShell无法在我的C#代码段中识别DateTime类。

2 个答案:

答案 0 :(得分:7)

从技术上讲,我的回答不是您的问题的答案,因为它不能解决您的技术问题(您已经自己解决了)。

但是,您可能想知道使用基本上是Powershell的单衬套就可以实现所需的结果:

function GetUTCFileTimeAsHexString
{
    return `
        (Get-Date).ToFileTimeUtc() `
        | % { "{0:X8}:{1:X8}" -f (($_ -shr 32) -band 0xFFFFFFFFL), ($_ -band 0xFFFFFFFFL) }
}

$HexString = GetUTCFileTimeAsHexString
$HexString;

请注意,这至少需要Powershell 3,它引入了-shr-band运算符。

答案 1 :(得分:2)

原来,您需要包括using指令。在这种情况下,“正在使用系统;”

$HH = @"
using System;

public class HexHelper
{
    public static string GetUTCFileTimeAsHexString()
    {
        string sHEX = "";

        long ftLong = DateTime.Now.ToFileTimeUtc();
        int ftHigh = (int)(ftLong >> 32);
        int ftLow = (int)ftLong;
        sHEX = ftHigh.ToString("X") + ":" + ftLow.ToString("X");

        return sHEX;
    }
}
"@;

Add-Type -TypeDefinition $HH;
$HexString = [HexHelper]::GetUTCFileTimeAsHexString();
$HexString;