summaryrefslogtreecommitdiff
path: root/ledger/store/trackerdb/utils.go
blob: 96c562a5603f042240c6dd650c5311f67287dfca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Copyright (C) 2019-2024 Algorand, Inc.
// This file is part of go-algorand
//
// go-algorand is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// go-algorand is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with go-algorand.  If not, see <https://www.gnu.org/licenses/>.

package trackerdb

import (
	"io"
	"os"
	"path/filepath"
)

// isDirEmpty returns if a given directory is empty or not.
func isDirEmpty(path string) (bool, error) {
	dir, err := os.Open(path)
	if err != nil {
		return false, err
	}
	defer dir.Close()
	_, err = dir.Readdirnames(1)
	if err != io.EOF {
		return false, err
	}
	return true, nil
}

// GetEmptyDirs returns a slice of paths for empty directories which are located in PathToScan arg
func GetEmptyDirs(PathToScan string) ([]string, error) {
	var emptyDir []string
	err := filepath.Walk(PathToScan, func(path string, f os.FileInfo, errIn error) error {
		if errIn != nil {
			return errIn
		}
		if !f.IsDir() {
			return nil
		}
		isEmpty, err := isDirEmpty(path)
		if err != nil {
			if os.IsNotExist(err) {
				return filepath.SkipDir
			}
			return err
		}
		if isEmpty {
			emptyDir = append(emptyDir, path)
		}
		return nil
	})
	return emptyDir, err
}