tempdir_deprecated.go 313 B

12345678910
  1. package ioutils
  2. import "github.com/docker/docker/pkg/longpath"
  3. // TempDir is the equivalent of [os.MkdirTemp], except that on Windows
  4. // the result is in Windows longpath format. On Unix systems it is
  5. // equivalent to [os.MkdirTemp].
  6. //
  7. // Deprecated: use [longpath.MkdirTemp].
  8. var TempDir = longpath.MkdirTemp