path_unix.go 507 B

123456789101112131415161718
  1. // Copyright 2011 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris
  5. package os
  6. const (
  7. PathSeparator = '/' // OS-specific path separator
  8. PathListSeparator = ':' // OS-specific path list separator
  9. )
  10. // IsPathSeparator returns true if c is a directory separator character.
  11. func IsPathSeparator(c uint8) bool {
  12. return PathSeparator == c
  13. }