tiktok-dl/utils/fileio.go

52 lines
983 B
Go
Raw Normal View History

2020-01-19 02:11:53 +00:00
package utils
import (
"bufio"
2020-01-21 23:06:35 +00:00
"io/ioutil"
2020-01-19 02:11:53 +00:00
"os"
)
type delegateString func(string)
2020-01-19 02:11:53 +00:00
// CheckIfExists - Checks if file or directory exists
func CheckIfExists(path string) bool {
if _, err := os.Stat(path); os.IsNotExist(err) {
return false
}
return true
}
// InitOutputDirectory - Creates output directory
func InitOutputDirectory(path string) {
if _, err := os.Stat(path); os.IsNotExist(err) {
os.MkdirAll(path, os.ModePerm)
}
}
2020-01-21 23:06:35 +00:00
// ReadFileToString - Reads file and returns content
func ReadFileToString(path string) string {
content, err := ioutil.ReadFile(path)
if err != nil {
panic(err)
}
return string(content)
}
// ReadFileLineByLine - Reads file line by line and calls delegate
func ReadFileLineByLine(path string, delegate delegateString) {
file, err := os.Open(path)
CheckErr(err)
defer file.Close()
scanner := bufio.NewScanner(file)
for scanner.Scan() {
delegate(scanner.Text())
}
if err := scanner.Err(); err != nil {
panic(err)
}
}