3 lines
72 B
PowerShell
3 lines
72 B
PowerShell
Function Truncate-File(fname) {
|
|
$null | Set-Content -Path "$fname"
|
|
}
|