30 lines
739 B
Go
30 lines
739 B
Go
|
package database
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"fmt"
|
||
|
"os"
|
||
|
"path/filepath"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
// resultTimestamp is a windows friendly timestamp
|
||
|
const resultTimestamp = "2006-01-02T150405.999999999Z0700"
|
||
|
|
||
|
// makeResultsDir creates and returns a directory for the result
|
||
|
func makeResultsDir(home string, name string, ts time.Time) (string, error) {
|
||
|
p := filepath.Join(home, "msmts",
|
||
|
fmt.Sprintf("%s-%s", name, ts.Format(resultTimestamp)))
|
||
|
|
||
|
// If the path already exists, this is a problem. It should not clash, because
|
||
|
// we are using nanosecond precision for the starttime.
|
||
|
if _, e := os.Stat(p); e == nil {
|
||
|
return "", errors.New("results path already exists")
|
||
|
}
|
||
|
err := os.MkdirAll(p, 0700)
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
return p, nil
|
||
|
}
|