/vendor/github.com/hashicorp/consul/vendor/github.com/docker/docker/pkg/system/filesys_windows.go

https://github.com/backstage/backstage · Go · 82 lines · 55 code · 10 blank · 17 comment · 18 complexity · c55c5f92fc465ef720e1817b01c71192 MD5 · raw file

  1. // +build windows
  2. package system
  3. import (
  4. "os"
  5. "path/filepath"
  6. "regexp"
  7. "strings"
  8. "syscall"
  9. )
  10. // MkdirAll implementation that is volume path aware for Windows.
  11. func MkdirAll(path string, perm os.FileMode) error {
  12. if re := regexp.MustCompile(`^\\\\\?\\Volume{[a-z0-9-]+}$`); re.MatchString(path) {
  13. return nil
  14. }
  15. // The rest of this method is copied from os.MkdirAll and should be kept
  16. // as-is to ensure compatibility.
  17. // Fast path: if we can tell whether path is a directory or file, stop with success or error.
  18. dir, err := os.Stat(path)
  19. if err == nil {
  20. if dir.IsDir() {
  21. return nil
  22. }
  23. return &os.PathError{
  24. Op: "mkdir",
  25. Path: path,
  26. Err: syscall.ENOTDIR,
  27. }
  28. }
  29. // Slow path: make sure parent exists and then call Mkdir for path.
  30. i := len(path)
  31. for i > 0 && os.IsPathSeparator(path[i-1]) { // Skip trailing path separator.
  32. i--
  33. }
  34. j := i
  35. for j > 0 && !os.IsPathSeparator(path[j-1]) { // Scan backward over element.
  36. j--
  37. }
  38. if j > 1 {
  39. // Create parent
  40. err = MkdirAll(path[0:j-1], perm)
  41. if err != nil {
  42. return err
  43. }
  44. }
  45. // Parent now exists; invoke Mkdir and use its result.
  46. err = os.Mkdir(path, perm)
  47. if err != nil {
  48. // Handle arguments like "foo/." by
  49. // double-checking that directory doesn't exist.
  50. dir, err1 := os.Lstat(path)
  51. if err1 == nil && dir.IsDir() {
  52. return nil
  53. }
  54. return err
  55. }
  56. return nil
  57. }
  58. // IsAbs is a platform-specific wrapper for filepath.IsAbs. On Windows,
  59. // golang filepath.IsAbs does not consider a path \windows\system32 as absolute
  60. // as it doesn't start with a drive-letter/colon combination. However, in
  61. // docker we need to verify things such as WORKDIR /windows/system32 in
  62. // a Dockerfile (which gets translated to \windows\system32 when being processed
  63. // by the daemon. This SHOULD be treated as absolute from a docker processing
  64. // perspective.
  65. func IsAbs(path string) bool {
  66. if !filepath.IsAbs(path) {
  67. if !strings.HasPrefix(path, string(os.PathSeparator)) {
  68. return false
  69. }
  70. }
  71. return true
  72. }