2011-05-28 21:03:49 -06:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package os
|
|
|
|
|
|
|
|
const (
|
|
|
|
PathSeparator = '\\' // OS-specific path separator
|
2011-06-23 23:00:59 -06:00
|
|
|
PathListSeparator = ';' // OS-specific path list separator
|
2011-05-28 21:03:49 -06:00
|
|
|
)
|
|
|
|
|
2015-02-17 16:44:42 -07:00
|
|
|
// IsPathSeparator reports whether c is a directory separator character.
|
2011-05-28 21:03:49 -06:00
|
|
|
func IsPathSeparator(c uint8) bool {
|
|
|
|
// NOTE: Windows accept / as path separator.
|
|
|
|
return c == '\\' || c == '/'
|
|
|
|
}
|