File: stat_unsupported.go

package info (click to toggle)
golang-github-a8m-tree 0.0~git20240104.2c8764a-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 168 kB
  • sloc: sh: 23; makefile: 5
file content (9 lines) | stat: -rw-r--r-- 152 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
//+build plan9 windows

package tree

import "os"

func getStat(fi os.FileInfo) (ok bool, inode, device, uid, gid uint64) {
	return false, 0, 0, 0, 0
}