2016-02-15 07:09:34 -06:00
|
|
|
package services
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
|
|
|
type IoUtilImp struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i IoUtilImp) Stat(path string) (os.FileInfo, error) {
|
|
|
|
return os.Stat(path)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i IoUtilImp) RemoveAll(path string) error {
|
|
|
|
return os.RemoveAll(path)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i IoUtilImp) ReadDir(path string) ([]os.FileInfo, error) {
|
|
|
|
return ioutil.ReadDir(path)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i IoUtilImp) ReadFile(filename string) ([]byte, error) {
|
2020-12-03 15:13:06 -06:00
|
|
|
// We can ignore the gosec G304 warning on this one, since the variable part of the file path stems
|
|
|
|
// from command line flag "pluginsDir". If the user shouldn't be reading from this directory, they shouldn't have
|
|
|
|
// the permission in the file system.
|
|
|
|
// nolint:gosec
|
2016-02-15 07:09:34 -06:00
|
|
|
return ioutil.ReadFile(filename)
|
|
|
|
}
|