Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PSElvUI
1.0.2
functions/private/Invoke-ElvFileWrite.ps1
function
Invoke-ElvFileWrite
{
[
cmdletbinding
(
)
]
param
(
[
Parameter
(
)
]
$Path
,
[
Parameter
(
)
]
$FileContent
)
[io.file]
::
WriteAllBytes
(
$Path
,
$FileContent
)
}