@page "/Library" @inject ISnackbar Snackbar @inject ILibraryService LibraryService Library information @if (_libraryInformation != null) { Library path: @_libraryInformation.LibraryPath Created at (UTC): @_libraryInformation.CreatedAtUtc Last modified (UTC): @_libraryInformation.LastModifiedUtc Library size: @($"{Suffix.BytesToSizeSuffix(_libraryInformation.TotalSizeBytes)} ({_libraryInformation.TotalSizeBytes} bytes)") Drive total size: @($"{Suffix.BytesToSizeSuffix(_libraryInformation.DriveTotalSpaceBytes)} ({_libraryInformation.DriveTotalSpaceBytes} bytes)") Drive used space: @($"{Suffix.BytesToSizeSuffix(_libraryInformation.DriveUsedSpaceBytes)} ({_libraryInformation.DriveUsedSpaceBytes} bytes)") Drive free space available: @($"{Suffix.BytesToSizeSuffix(_libraryInformation.DriveFreeSpaceBytes)} ({_libraryInformation.DriveFreeSpaceBytes} bytes)") Total media: @_libraryInformation.TotalMedia Total channels: @_libraryInformation.TotalChannels }