os.DevNull
// DevNull is the name of the operating system's “null device.”
// On Unix-like systems, it is "/dev/null"; on Windows, "NUL".
const DevNull = "/dev/null"
os.DevNull
// DevNull is the name of the operating system's “null device.”
// On Unix-like systems, it is "/dev/null"; on Windows, "NUL".
const DevNull = "/dev/null"
os.DevNull
// DevNull is the name of the operating system's “null device.”
// On Unix-like systems, it is "/dev/null"; on Windows, "NUL".
const DevNull = "NUL"
os.ModeAppend
// The defined file mode bits are the most significant bits of the FileMode.
// The nine least-significant bits are the standard Unix rwxrwxrwx permissions.
// The values of these bits should be considered part of the public API and
// may be used in wire protocols or disk representations: they must not be
// changed, although new bits might be added.
const ModeAppend = fs.ModeAppend
os.ModeCharDevice
// The defined file mode bits are the most significant bits of the FileMode.
// The nine least-significant bits are the standard Unix rwxrwxrwx permissions.
// The values of these bits should be considered part of the public API and
// may be used in wire protocols or disk representations: they must not be
// changed, although new bits might be added.
const ModeCharDevice = fs.ModeCharDevice
os.ModeDevice
// The defined file mode bits are the most significant bits of the FileMode.
// The nine least-significant bits are the standard Unix rwxrwxrwx permissions.
// The values of these bits should be considered part of the public API and
// may be used in wire protocols or disk representations: they must not be
// changed, although new bits might be added.
const ModeDevice = fs.ModeDevice
os.ModeDir
// The defined file mode bits are the most significant bits of the FileMode.
// The nine least-significant bits are the standard Unix rwxrwxrwx permissions.
// The values of these bits should be considered part of the public API and
// may be used in wire protocols or disk representations: they must not be
// changed, although new bits might be added.
// The single letters are the abbreviations
// used by the String method's formatting.
const ModeDir = fs.ModeDir
os.ModeExclusive
// The defined file mode bits are the most significant bits of the FileMode.
// The nine least-significant bits are the standard Unix rwxrwxrwx permissions.
// The values of these bits should be considered part of the public API and
// may be used in wire protocols or disk representations: they must not be
// changed, although new bits might be added.
const ModeExclusive = fs.ModeExclusive
os.ModeIrregular
// The defined file mode bits are the most significant bits of the FileMode.
// The nine least-significant bits are the standard Unix rwxrwxrwx permissions.
// The values of these bits should be considered part of the public API and
// may be used in wire protocols or disk representations: they must not be
// changed, although new bits might be added.
const ModeIrregular = fs.ModeIrregular
os.ModeNamedPipe
// The defined file mode bits are the most significant bits of the FileMode.
// The nine least-significant bits are the standard Unix rwxrwxrwx permissions.
// The values of these bits should be considered part of the public API and
// may be used in wire protocols or disk representations: they must not be
// changed, although new bits might be added.
const ModeNamedPipe = fs.ModeNamedPipe
os.ModePerm
// The defined file mode bits are the most significant bits of the FileMode.
// The nine least-significant bits are the standard Unix rwxrwxrwx permissions.
// The values of these bits should be considered part of the public API and
// may be used in wire protocols or disk representations: they must not be
// changed, although new bits might be added.
const ModePerm = fs.ModePerm
os.ModeSetgid
// The defined file mode bits are the most significant bits of the FileMode.
// The nine least-significant bits are the standard Unix rwxrwxrwx permissions.
// The values of these bits should be considered part of the public API and
// may be used in wire protocols or disk representations: they must not be
// changed, although new bits might be added.
const ModeSetgid = fs.ModeSetgid
os.ModeSetuid
// The defined file mode bits are the most significant bits of the FileMode.
// The nine least-significant bits are the standard Unix rwxrwxrwx permissions.
// The values of these bits should be considered part of the public API and
// may be used in wire protocols or disk representations: they must not be
// changed, although new bits might be added.
const ModeSetuid = fs.ModeSetuid
os.ModeSocket
// The defined file mode bits are the most significant bits of the FileMode.
// The nine least-significant bits are the standard Unix rwxrwxrwx permissions.
// The values of these bits should be considered part of the public API and
// may be used in wire protocols or disk representations: they must not be
// changed, although new bits might be added.
const ModeSocket = fs.ModeSocket
os.ModeSticky
// The defined file mode bits are the most significant bits of the FileMode.
// The nine least-significant bits are the standard Unix rwxrwxrwx permissions.
// The values of these bits should be considered part of the public API and
// may be used in wire protocols or disk representations: they must not be
// changed, although new bits might be added.
const ModeSticky = fs.ModeSticky
os.ModeSymlink
// The defined file mode bits are the most significant bits of the FileMode.
// The nine least-significant bits are the standard Unix rwxrwxrwx permissions.
// The values of these bits should be considered part of the public API and
// may be used in wire protocols or disk representations: they must not be
// changed, although new bits might be added.
const ModeSymlink = fs.ModeSymlink
os.ModeTemporary
// The defined file mode bits are the most significant bits of the FileMode.
// The nine least-significant bits are the standard Unix rwxrwxrwx permissions.
// The values of these bits should be considered part of the public API and
// may be used in wire protocols or disk representations: they must not be
// changed, although new bits might be added.
const ModeTemporary = fs.ModeTemporary
os.ModeType
// The defined file mode bits are the most significant bits of the FileMode.
// The nine least-significant bits are the standard Unix rwxrwxrwx permissions.
// The values of these bits should be considered part of the public API and
// may be used in wire protocols or disk representations: they must not be
// changed, although new bits might be added.
// Mask for the type bits. For regular files, none will be set.
const ModeType = fs.ModeType
os.O_APPEND
// Flags to OpenFile wrapping those of the underlying system. Not all
// flags may be implemented on a given system.
// The remaining values may be or'ed in to control behavior.
const O_APPEND = syscall.O_APPEND
os.O_CREATE
// Flags to OpenFile wrapping those of the underlying system. Not all
// flags may be implemented on a given system.
const O_CREATE = syscall.O_CREAT
os.O_EXCL
// Flags to OpenFile wrapping those of the underlying system. Not all
// flags may be implemented on a given system.
const O_EXCL = syscall.O_EXCL
os.O_RDONLY
// Flags to OpenFile wrapping those of the underlying system. Not all
// flags may be implemented on a given system.
// Exactly one of O_RDONLY, O_WRONLY, or O_RDWR must be specified.
const O_RDONLY = syscall.O_RDONLY
os.O_RDWR
// Flags to OpenFile wrapping those of the underlying system. Not all
// flags may be implemented on a given system.
const O_RDWR = syscall.O_RDWR
os.O_SYNC
// Flags to OpenFile wrapping those of the underlying system. Not all
// flags may be implemented on a given system.
const O_SYNC = syscall.O_SYNC
os.O_TRUNC
// Flags to OpenFile wrapping those of the underlying system. Not all
// flags may be implemented on a given system.
const O_TRUNC = syscall.O_TRUNC
os.O_WRONLY
// Flags to OpenFile wrapping those of the underlying system. Not all
// flags may be implemented on a given system.
const O_WRONLY = syscall.O_WRONLY
os.PathListSeparator
const PathListSeparator = '\000'
os.PathListSeparator
const PathListSeparator = ':'
os.PathListSeparator
const PathListSeparator = ';'
os.PathSeparator
const PathSeparator = '/'
os.PathSeparator
const PathSeparator = '/'
os.PathSeparator
const PathSeparator = '\\'