forked from jdhitsolutions/PSScriptTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileNameTools.ps1
More file actions
153 lines (137 loc) · 4.76 KB
/
FileNameTools.ps1
File metadata and controls
153 lines (137 loc) · 4.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
Function New-RandomFileName {
[cmdletbinding(DefaultParameterSetName = "none")]
[Alias("rfn")]
[outputtype([string])]
Param(
[parameter(Position = 0)]
[Parameter(ParameterSetName = 'none')]
[Parameter(ParameterSetName = 'home')]
[Parameter(ParameterSetName = 'temp')]
#enter an extension without the leading period e.g 'bak'
[string]$Extension,
[Parameter(ParameterSetName = 'temp')]
[alias("temp")]
[Switch]$UseTempFolder,
[Parameter(ParameterSetName = 'home')]
[alias("home")]
[Switch]$UseHomeFolder
)
if ($UseTempFolder) {
$filename = [system.io.path]::GetTempFileName()
}
elseif ($UseHomeFolder) {
$homedocs =[Environment]::GetFolderPath([Environment+SpecialFolder]::MyDocuments)
$filename = Join-Path -Path $homedocs -ChildPath ([system.io.path]::GetRandomFileName())
}
else {
$filename = [system.io.path]::GetRandomFileName()
}
if ($Extension) {
#get the extension and strip off the leading period
$original = [system.io.path]::GetExtension($filename).Substring(1)
$filename -replace "$original$", $Extension
}
else {
$filename
}
} #end New-RandomFilename
Function New-CustomFileName {
[cmdletbinding()]
[Alias("cfn")]
[outputtype([string])]
Param (
[Parameter(
Position = 0,
Mandatory,
HelpMessage = @"
You can create a template string using any of these variables, including the % symbol.
- %username
- %computername
- %year - 4 digit year
- %yr - 2 digit year
- %monthname - The abbreviated month name
- %month - The month number
- %dayofweek - The full name of the week day
- %day
- %hour - the hour of the day in 12 hour format to 2 digits
- %hour24 - the hour of the day in 24 hour format to 2 digits
- %minute
- %seconds
- %time - A compact string of HourMinuteSecond
- %string - A random string
- %guid
- %### - a random number matching the number of # characters
"@)]
[ValidateNotNullOrEmpty()]
[string]$Template,
[ValidateSet("Lower", "Upper", "Default")]
[string]$Case = "Default"
)
#convert placeholders to lower case but leave everything else as is
[regex]$rx = "%\w+(?=%|-|\.|\s|\(|\)|\[|\])"
Write-Detail "Starting $($myinvocation.MyCommand)" | Write-Verbose
Write-Detail "Processing template: $template" | Write-Verbose
$rx.matches($Template) | ForEach-Object {
Write-Detail "Converting $($_.value) to lower case" | Write-Verbose
$Template = $Template.replace($_.value, $_.value.tolower())
}
[string]$filename = $Template
Write-Detail "Using filename: $filename" | Write-Verbose
$now = Get-Date
if ($env:USERNAME) {
$user = $env:USERNAME
}
elseif ($env:USER) {
$user = $env:USER
}
else {
$user = "Unknown"
}
#this needs to be an ordered hashtable so that the regex replacements
#will be processed in the right order
$hash = [ordered]@{
'%username' = $user
'%computername' = [environment]::MachineName
'%year' = $now.Year
'%yr' = "{0:yy}" -f $now
'%monthname' = ("{0:MMM}" -f $now)
'%month' = "{0:MM}" -f $now
'%dayofweek' = $now.DayOfWeek
'%day' = "{0:dd}" -f $now
'%hour24' = "{0:HH}" -f $now
'%hour' = "{0:hh}" -f $now
'%minute' = "{0:mm}" -f $now
'%seconds' = "{0:ss}" -f $now
'%time' = "{0}{1}{2}" -f $now.hour, $now.minute, $now.Second
'%string' = ([system.io.path]::GetRandomFileName()).split(".")[0]
'%guid' = [System.Guid]::NewGuid().guid
}
$hash.GetEnumerator() | ForEach-Object {
Write-Detail "Testing $filename for $($_.key)" | Write-Verbose
if ($filename -match "($($_.key))") {
Write-Detail "replacing $($_.key) with $($_.value)" | Write-Verbose
$filename = $filename -replace "($($_.key))", $_.value
}
}
#handle ### number replacement
[regex]$rx = '%#+'
if ($rx.IsMatch($filename)) {
$count = $rx.Match($filename).Value.length - 1
$num = (0..9 | Get-Random -Count 10 | Get-Random -count $count) -join ""
Write-Detail "replacing # with $num" | Write-Verbose
$filename = $rx.Replace($filename, $num)
}
Write-Detail "Converting case to $Case" | Write-Verbose
Switch ($Case) {
"Upper" {
$filename.toUpper()
}
"Lower" {
$filename.ToLower()
}
default {
$filename
}
} #close switch
Write-Detail "Ending $($myinvocation.MyCommand)" | Write-Verbose
} #end New-CustomFileName