fileutil.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. Copyright 2014 CoreOS, Inc.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package fileutil
  14. import (
  15. "io/ioutil"
  16. "os"
  17. "path"
  18. )
  19. const (
  20. privateFileMode = 0600
  21. )
  22. // IsDirWriteable checks if dir is writable by writing and removing a file
  23. // to dir. It returns nil if dir is writable.
  24. func IsDirWriteable(dir string) error {
  25. f := path.Join(dir, ".touch")
  26. if err := ioutil.WriteFile(f, []byte(""), privateFileMode); err != nil {
  27. return err
  28. }
  29. return os.Remove(f)
  30. }
  31. // ReadDir returns the filenames in the given directory.
  32. func ReadDir(dirpath string) ([]string, error) {
  33. dir, err := os.Open(dirpath)
  34. if err != nil {
  35. return nil, err
  36. }
  37. defer dir.Close()
  38. names, err := dir.Readdirnames(-1)
  39. if err != nil {
  40. return nil, err
  41. }
  42. return names, nil
  43. }