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 88b9c27 commit c528a16Copy full SHA for c528a16
src/os/file.go
@@ -10,6 +10,15 @@ import (
10
"syscall"
11
)
12
13
+// Seek whence values.
14
+//
15
+// Deprecated: Use io.SeekStart, io.SeekCurrent, and io.SeekEnd.
16
+const (
17
+ SEEK_SET int = io.SeekStart
18
+ SEEK_CUR int = io.SeekCurrent
19
+ SEEK_END int = io.SeekEnd
20
+)
21
+
22
// Mkdir creates a directory. If the operation fails, it will return an error of
23
// type *PathError.
24
func Mkdir(path string, perm FileMode) error {
0 commit comments