We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7070f5a commit 7c5cb06Copy full SHA for 7c5cb06
file/file_other.go
@@ -1,4 +1,4 @@
1
-//go:build !windows && !darwin && !dragonfly && !freebsd && !linux && !nacl && !netbsd && !openbsd && !solaris && !wasm
+//go:build !windows && !darwin && !dragonfly && !freebsd && !linux && !nacl && !netbsd && !openbsd && !solaris && !wasm && !plan9
2
3
package file
4
file/file_plan9.go
@@ -0,0 +1,12 @@
+package file
+
+import (
+ "os"
5
+)
6
7
+// getOSFileInfo returns file information on Unix.
8
+// There are no such fields on Plan 9 -- at least
9
+// of the Unix type. Plan 9 uids and gids are strings.
10
+func getOSFileInfo(info os.FileInfo) *FileInfo {
11
+ return nil
12
+}
0 commit comments