mirror of
https://github.com/thegeeklab/wp-plugin-go.git
synced 2024-11-21 14:10:39 +00:00
55 lines
1.1 KiB
Go
55 lines
1.1 KiB
Go
package file
|
|
|
|
import (
|
|
"errors"
|
|
"io"
|
|
"os"
|
|
)
|
|
|
|
// DeleteDir deletes the directory at the given path.
|
|
// It returns nil if the deletion succeeds, or the deletion error otherwise.
|
|
// If the directory does not exist, DeleteDir returns nil.
|
|
func DeleteDir(path string) error {
|
|
if _, err := os.Stat(path); os.IsNotExist(err) {
|
|
return nil
|
|
}
|
|
|
|
return os.Remove(path)
|
|
}
|
|
|
|
// IsDir returns whether the given path is a directory. If the path does not exist, it returns (false, nil).
|
|
// If there is an error checking the path, it returns (false, err).
|
|
func IsDir(path string) (bool, error) {
|
|
_, err := os.Stat(path)
|
|
if err == nil {
|
|
return true, nil
|
|
}
|
|
|
|
if os.IsNotExist(err) {
|
|
return false, nil
|
|
}
|
|
|
|
return false, err
|
|
}
|
|
|
|
// IsDirEmpty checks if the directory at the given path is empty.
|
|
// It returns true if the directory is empty, false if not empty, or an error if there was a problem checking it.
|
|
func IsDirEmpty(path string) (bool, error) {
|
|
f, err := os.Open(path)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
defer f.Close()
|
|
|
|
_, err = f.Readdir(1)
|
|
if err == nil {
|
|
return false, nil
|
|
}
|
|
|
|
if errors.Is(err, io.EOF) {
|
|
return true, nil
|
|
}
|
|
|
|
return false, err
|
|
}
|