icinga-powershell-framework/lib/core/tools/ConvertFrom-TimeSpan.psm1

19 lines
323 B
PowerShell
Raw Normal View History

Import-IcingaLib core\tools;
function ConvertFrom-TimeSpan()
{
param(
$Seconds
);
$TimeSpan = [TimeSpan]::FromSeconds($Seconds);
return [string]::Format(
2019-10-30 12:53:57 -04:00
'{0}d {1}h {2}m {3}s',
$TimeSpan.Days,
$TimeSpan.Hours,
$TimeSpan.Minutes,
$TimeSpan.Seconds
);
}