FileInfo struct

FileInfo represents information about a file

Fields:

  • Path (string)
  • ParentPath (string)
  • IsDirectory (bool)
  • Size (int64)
  • Permissions (Permission)
  • Extension (string)

FileDiffInfo struct

FileDiff represents the difference between two files.

Fields:

  • AddedLines ([]string)
  • RemovedLines ([]string)

Permission struct

Permission represents file permissions of a file

Fields:

  • OwnerRead (bool)
  • OwnerWrite (bool)
  • OwnerExecute (bool)
  • GroupRead (bool)
  • GroupWrite (bool)
  • GroupExecute (bool)
  • OthersRead (bool)
  • OthersWrite (bool)
  • OthersExecute (bool)

Methods:

String


Returns:
  • string

Show/Hide Method Body
{
	boolToChar := func(b bool) string {
		if b {
			return "r"
		}
		return "-"
	}
	return fmt.Sprintf("%s%s%s%s%s%s%s%s%s",
		boolToChar(p.OwnerRead), boolToChar(p.OwnerWrite), boolToChar(p.OwnerExecute),
		boolToChar(p.GroupRead), boolToChar(p.GroupWrite), boolToChar(p.GroupExecute),
		boolToChar(p.OthersRead), boolToChar(p.OthersWrite), boolToChar(p.OthersExecute),
	)
}

BaseInfo struct

BaseInfo contains the common fields for both disks and partitions

Fields:

  • Path (string)
  • Size (int64)
  • HumanSize (string)
  • Filesystem (string)
  • Mountpoint (string)
  • Label (string)
  • UUID (string)
  • PARTUUID (string)

PartitionInfo struct

PartitionInfo represents information about a disk partition

DiskInfo struct

DiskInfo represents information about a disk

Fields:

  • Partitions ([]PartitionInfo)

fmt import

Import example:

import "fmt"