-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathread.go
More file actions
47 lines (44 loc) · 1000 Bytes
/
read.go
File metadata and controls
47 lines (44 loc) · 1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package sqlpath
import (
"fmt"
"os"
"path/filepath"
"strings"
"github.com/sqlc-dev/sqlc/internal/migrations"
)
// Return a list of SQL files in the listed paths. Only includes files ending
// in .sql. Omits hidden files, directories, and migrations.
func Glob(paths []string) ([]string, error) {
var files []string
for _, path := range paths {
f, err := os.Stat(path)
if err != nil {
return nil, fmt.Errorf("path %s does not exist", path)
}
if f.IsDir() {
listing, err := os.ReadDir(path)
if err != nil {
return nil, err
}
for _, f := range listing {
files = append(files, filepath.Join(path, f.Name()))
}
} else {
files = append(files, path)
}
}
var sqlFiles []string
for _, file := range files {
if !strings.HasSuffix(file, ".sql") {
continue
}
if strings.HasPrefix(filepath.Base(file), ".") {
continue
}
if migrations.IsDown(filepath.Base(file)) {
continue
}
sqlFiles = append(sqlFiles, file)
}
return sqlFiles, nil
}