move over to using fileio for checking for files existing

This commit is contained in:
HikariKnight 2023-04-09 17:04:13 +02:00
parent c3a1639dee
commit f3032966b9

View file

@ -1,7 +1,6 @@
package configs package configs
import ( import (
"errors"
"fmt" "fmt"
"os" "os"
"regexp" "regexp"
@ -85,7 +84,7 @@ func InitConfigs() {
syspath := syspath_re.ReplaceAllString(confpath, "") syspath := syspath_re.ReplaceAllString(confpath, "")
// If the path exists // If the path exists
if _, err := os.Stat(syspath); !errors.Is(err, os.ErrNotExist) { if fileio.FileExist(syspath) {
// Create the directories for our configs // Create the directories for our configs
err := os.MkdirAll(confpath, os.ModePerm) err := os.MkdirAll(confpath, os.ModePerm)
errorcheck.ErrorCheck(err) errorcheck.ErrorCheck(err)
@ -105,7 +104,7 @@ func InitConfigs() {
sysfile := syspath_re.ReplaceAllString(conffile, "") sysfile := syspath_re.ReplaceAllString(conffile, "")
// If the file exists // If the file exists
if _, err := os.Stat(sysfile); !errors.Is(err, os.ErrNotExist) { if fileio.FileExist(sysfile) {
// Create the directories for our configs // Create the directories for our configs
file, err := os.Create(conffile) file, err := os.Create(conffile)
errorcheck.ErrorCheck(err) errorcheck.ErrorCheck(err)
@ -114,7 +113,7 @@ func InitConfigs() {
} }
// If we now have a config that exists // If we now have a config that exists
if _, err := os.Stat(conffile); !errors.Is(err, os.ErrNotExist) { if fileio.FileExist(conffile) {
switch conffile { switch conffile {
case config.path.ETCMODULES: case config.path.ETCMODULES:
// Read the header // Read the header