mirror of
https://github.com/thegeeklab/wp-plugin-go.git
synced 2024-11-24 23:20:41 +00:00
32 lines
704 B
Go
32 lines
704 B
Go
|
package file
|
||
|
|
||
|
import (
|
||
|
"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
|
||
|
}
|