批次修改資料夾名稱 - Windows
By Doris
at 2022-04-17T04:05
at 2022-04-17T04:05
Table of Contents
Function Main
{
Create-MultipleFolders -Title "X" -Amount 999
}
Function Create-MultipleFolders
{
param (
[string]$Path = '',
[string]$Title = '',
[int]$Amount = 1)
if ($Path.Length -eq 0) {$Path = $pwd.path}
for ([int]$i = 1; $i -le $Amount; $i++)
{
[string]$TitleWithNumber = '{0}{1:d3}' -f $Title, $i
[string]$TargetFullName = $Path.Trim().Trim('\') + '\'
+ $TitleWithNumber
New-Item -Force -ItemType 'directory' -Path (
$TargetFullName -replace '([\`\[\]])', '`$1')
}
}
Main
https://i.imgur.com/BvkQu5Z.png
--
Sent from PTTopia
--
{
Create-MultipleFolders -Title "X" -Amount 999
}
Function Create-MultipleFolders
{
param (
[string]$Path = '',
[string]$Title = '',
[int]$Amount = 1)
if ($Path.Length -eq 0) {$Path = $pwd.path}
for ([int]$i = 1; $i -le $Amount; $i++)
{
[string]$TitleWithNumber = '{0}{1:d3}' -f $Title, $i
[string]$TargetFullName = $Path.Trim().Trim('\') + '\'
+ $TitleWithNumber
New-Item -Force -ItemType 'directory' -Path (
$TargetFullName -replace '([\`\[\]])', '`$1')
}
}
Main
https://i.imgur.com/BvkQu5Z.png
--
Sent from PTTopia
--
Tags:
Windows
All Comments
Related Posts
window 更新之後不讓我用電腦
By Delia
at 2022-04-16T14:21
at 2022-04-16T14:21
音質優化軟體
By Mason
at 2022-04-15T15:04
at 2022-04-15T15:04
4月更新 Windows 先等等
By Donna
at 2022-04-14T16:13
at 2022-04-14T16:13
win11重灌 磁碟分割區
By Andrew
at 2022-04-13T22:39
at 2022-04-13T22:39
請問怎麼將市集下載的APP建立捷徑在桌面
By Callum
at 2022-04-11T14:46
at 2022-04-11T14:46