You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

file.go 1.1 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. Copyright (c) [2023] [pcm]
  3. [pcm-coordinator] is licensed under Mulan PSL v2.
  4. You can use this software according to the terms and conditions of the Mulan PSL v2.
  5. You may obtain a copy of Mulan PSL v2 at:
  6. http://license.coscl.org.cn/MulanPSL2
  7. THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
  8. EITHER EXPaRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
  9. MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
  10. See the Mulan PSL v2 for more details.
  11. */
  12. package fileutils
  13. import (
  14. "os"
  15. "path/filepath"
  16. )
  17. // DirSize 获取整体文件夹大小
  18. func GetDirSize(path string) (int64, error) {
  19. var size int64
  20. err := filepath.Walk(path, func(_ string, info os.FileInfo, err error) error {
  21. if !info.IsDir() {
  22. size += info.Size()
  23. }
  24. return err
  25. })
  26. return size, err
  27. }
  28. // PathExists 判断文件夹是否存在
  29. func PathExists(path string) (bool, error) {
  30. _, err := os.Stat(path)
  31. if err == nil {
  32. return true, nil
  33. }
  34. if os.IsNotExist(err) {
  35. return false, nil
  36. }
  37. return false, err
  38. }

PCM is positioned as Software stack over Cloud, aiming to build the standards and ecology of heterogeneous cloud collaboration for JCC in a non intrusive and autonomous peer-to-peer manner.