Compare commits
2 Commits
877fb8ddf6
...
de188c1b8f
Author | SHA1 | Date | |
---|---|---|---|
de188c1b8f | |||
370efca124 |
41
osutils/files.go
Normal file
41
osutils/files.go
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
package osutils
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
)
|
||||||
|
|
||||||
|
func IsDirectory(path string) (bool, error) {
|
||||||
|
fileInfo, err := os.Stat(path)
|
||||||
|
if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return fileInfo.IsDir(), err
|
||||||
|
}
|
||||||
|
|
||||||
|
func RecursiceWalk(pathToWalk string) ([]string, error) {
|
||||||
|
paths := []string{}
|
||||||
|
err := filepath.Walk(pathToWalk,
|
||||||
|
func(path string, info os.FileInfo, err error) error {
|
||||||
|
if err != nil {
|
||||||
|
println(err)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
// fmt.Println(path[len(path)-4:])
|
||||||
|
libBool, err := IsDirectory(path)
|
||||||
|
if err != nil {
|
||||||
|
println("error in checking lib or dir")
|
||||||
|
}
|
||||||
|
if !libBool {
|
||||||
|
// println(path)
|
||||||
|
paths = append(paths, path)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
}
|
||||||
|
return paths, nil
|
||||||
|
}
|
@ -20,6 +20,31 @@ type SkirdaSession interface {
|
|||||||
|
|
||||||
type SkirdaSessions []SkirdaSession
|
type SkirdaSessions []SkirdaSession
|
||||||
|
|
||||||
|
// GetGameId implements SkirdaSession
|
||||||
|
func (SkirdaSessions) GetGameId() string {
|
||||||
|
panic("unimplemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetGameType implements SkirdaSession
|
||||||
|
func (SkirdaSessions) GetGameType() string {
|
||||||
|
panic("unimplemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetSessionData implements SkirdaSession
|
||||||
|
func (SkirdaSessions) GetSessionData() string {
|
||||||
|
panic("unimplemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetSessionId implements SkirdaSession
|
||||||
|
func (SkirdaSessions) GetSessionId() string {
|
||||||
|
panic("unimplemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetUIAssets implements SkirdaSession
|
||||||
|
func (SkirdaSessions) GetUIAssets() SessionUIAssets {
|
||||||
|
panic("unimplemented")
|
||||||
|
}
|
||||||
|
|
||||||
type SessionUIAssets struct {
|
type SessionUIAssets struct {
|
||||||
// GameID string `json:"gameId"`
|
// GameID string `json:"gameId"`
|
||||||
Title string `json:"title"`
|
Title string `json:"title"`
|
||||||
|
Loading…
Reference in New Issue
Block a user