gpt4 book ai didi

windows - 如何在 powershell 中创建一个简短但仍然唯一的目录名称

转载 作者:行者123 更新时间:2023-12-01 23:05:57 28 4
gpt4 key购买 nike

是否可以创建比默认 guid 格式更短的真正唯一的目录名称(即基于 uuid)?

到目前为止,我已经能够想出这个:

function Get-UglyButShortUniqueDirname {
[CmdletBinding()]
param ()

$t = "$([System.Guid]::NewGuid())".Replace("-", "")
Write-Verbose "base guid: $t"
$t = "$(0..$t.Length | % { if (($_ -lt $t.Length) -and !($_%2)) { [char][byte]"0x$($t[$_])$($t[$_+1])" } })".replace(" ", "").Trim()
Write-Verbose "guid as ascii: $t"
([System.IO.Path]::GetInvalidFileNameChars() | % { $t = $t.replace($_, '.') })
Write-Verbose "dirname: $t"
$t
}

有了这个,我可以生成看起来很奇怪但只包含大约 16 个字符的目录名称,这比普通 guid(没有破折号)的默认 32 个字符要好得多。

我有点担心的是:由于“无效的文件名字符”被删除并替换为点,这些标识符不能像 guid 那样具有相同的“唯一性 promise ”。

(在基于 Win 的自动化环境中与传统的 260 字符路径名限制作斗争 :-/)

最佳答案

我会 Base32 - 对 GUID 进行编码。对于 26 个字符,结果将比 Base64 略长,但您不会在不区分大小写的文件系统上丢失一些随机性。此外,它仅使用基本的字母数字字符,IMO 看起来更好;-)。

不幸的是,.NET 中没有内置的 Base32 编码器。首先,我采用了 this C# answer 的编码部分但后来我很喜欢并修改它以使用 z-base32变体,在人眼上更容易识别,并且通过不使用填充来节省一些字符。

Add-Type -TypeDefinition @'
public class ZBase32Encoder {
private const string Charset = "ybndrfg8ejkmcpqxot1uwisza345h769";

public static string ToString(byte[] input) {
if (input == null || input.Length == 0) {
throw new System.ArgumentNullException("input");
}

long returnLength = (input.Length * 8L - 1) / 5 + 1;
if( returnLength > (long) System.Int32.MaxValue ) {
throw new System.ArgumentException("Argument length is too large. (Parameter 'input')");
}

char[] returnArray = new char[returnLength];

byte nextChar = 0, bitsRemaining = 5;
int arrayIndex = 0;

foreach (byte b in input) {
nextChar = (byte)(nextChar | (b >> (8 - bitsRemaining)));
returnArray[arrayIndex++] = Charset[nextChar];

if (bitsRemaining < 4) {
nextChar = (byte)((b >> (3 - bitsRemaining)) & 31);
returnArray[arrayIndex++] = Charset[nextChar];
bitsRemaining += 5;
}

bitsRemaining -= 3;
nextChar = (byte)((b << bitsRemaining) & 31);
}

//if we didn't end with a full char
if (arrayIndex != returnLength) {
returnArray[arrayIndex++] = Charset[nextChar];
}

return new string(returnArray);
}
}
'@

foreach( $i in 1..5 ) {
$s = [ZBase32Encoder]::ToString($(New-Guid).ToByteArray())
"$s (Length: $($s.Length))"
}

输出:

81u68ug6txxwpbqz4znzgq3hfa (Length: 26)
sseik38xykrr5n99zedj96nsoy (Length: 26)
a353cgcyhefwdc8euk34zbytxa (Length: 26)
e3x8zd576zcrzn3nyxwxncenho (Length: 26)
7idr4xencm9rmp8wkzidk1fyhe (Length: 26)

关于windows - 如何在 powershell 中创建一个简短但仍然唯一的目录名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70865502/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com