generated from deadlydog/Template.NewGitRepo
-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path2023-10-11-create-test-files-of-arbitrary-size.ps1
38 lines (35 loc) · 1.85 KB
/
2023-10-11-create-test-files-of-arbitrary-size.ps1
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
$tip = [tiPS.PowerShellTip]::new()
$tip.CreatedDate = [DateTime]::Parse('2023-10-11')
$tip.Title = 'Create test files of arbitrary size'
$tip.TipText = @'
When doing performance testing it can be useful to have a file of a specific size to test with. Creating files of a specific size is fairly straightforward with the System.IO.FileStream class.
'@
$tip.Example = @'
[string] $fileName = [System.IO.Path]::GetRandomFileName()
[string] $filePath = Join-Path -Path (Get-Location) -ChildPath $fileName
[int64] $fileSize = 10MB
try {
$tempFile = [System.IO.FileStream]::new($filePath, Create, ReadWrite)
$tempFile.SetLength($fileSize)
$tempFile.Close()
Write-Output 'Created the following temp file:'
Get-ChildItem $filePath | Select-Object FullName,DirectoryName,Name,Length,CreationTime
} catch {
Write-Error $_
}
'@
$tip.Urls = @(
'https://learn.microsoft.com/en-us/dotnet/api/system.io.filestream'
'https://claytonerrington.com/blog/creating-a-test-file'
)
$tip.Category = [tiPS.TipCategory]::Other # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other.
$tip.Author = 'Daniel Schroeder (deadlydog)'
# Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc.
# Editor: Editor tips and extensions. e.g. VSCode, ISE, etc.
# Module: Modules and module tips. e.g. PSScriptAnalyzer, Pester, etc.
# NativeCmdlet: Native cmdlet tips. e.g. Get-Process, Get-ChildItem, Get-Content, etc.
# Performance: Tips to improve runtime performance. e.g. foreach vs ForEach-Object, ForEach-Object -Parallel, etc.
# Security: Security tips. e.g. ExecutionPolicy, Constrained Language Mode, passwords, etc.
# Syntax: Syntax tips. e.g. splatting, pipeline, etc.
# Terminal: Terminal shortcuts and tips. e.g. PSReadLine, Windows Terminal, ConEmu, etc.
# Other: Tips that don't fit into any of the other categories.