gpt4 book ai didi

powershell - 在 Powershell 中创建带前导零的文件夹

转载 作者:行者123 更新时间:2023-12-01 07:10:27 24 4
gpt4 key购买 nike

我一直在使用这个脚本来创建文件夹:

$i = 1
cd\
md d:\user$1
$i++

但是它会吐出这样的文件夹......
d:\user1
d:\user2
d:\user3

我想要的是两个前导零,这样当我到达 009 时它优雅地切换到单个前导零。
像智者在 099它应该过渡到 100 .

这是我希望它输出的内容:
d:\user001
d:\user010
d:\user100

目前我正在将零插入脚本中 $i 之前,并在它跳到第二和第三位时将其删除。
我读过的所有内容都提到使用字符串来获取前面的零。

这是唯一的方法吗?

Question from:
Reddit: Get powershell to count and include the leading zeros without using a string?

最佳答案

使用这样的东西:

0..10 | % { "user{0:000}" -f $_ } | % { New-Item -ItemType directory -Name $_ }

关于powershell - 在 Powershell 中创建带前导零的文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22531978/

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