file.go 982 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package logging
  2. import (
  3. "fmt"
  4. "time"
  5. )
  6. func getLogFilePath(rootPath, savePath string) string {
  7. return fmt.Sprintf("%s%s", rootPath, savePath)
  8. }
  9. func getLogFileName(saveName, timeFormat, logFileExt string) string {
  10. return fmt.Sprintf("%s%s.%s", saveName, time.Now().Format(timeFormat), logFileExt)
  11. }
  12. //func openLogFile(fileName, filePath string) (*os.File, error) {
  13. // dir, err := os.Getwd()
  14. // if err != nil {
  15. // return nil, fmt.Errorf("os.Getwd err: %v", err)
  16. // }
  17. //
  18. // src := dir + "/" + filePath
  19. // perm := file.CheckPermission(src)
  20. // if perm == true {
  21. // return nil, fmt.Errorf("file.CheckPermission Permission denied src: %s", src)
  22. // }
  23. //
  24. // err = file.IsNotExistMkDir(src)
  25. // if err != nil {
  26. // return nil, fmt.Errorf("file.IsNotExistMkDir src: %s, err: %v", src, err)
  27. // }
  28. //
  29. // f, err := file.Open(src+fileName, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
  30. // if err != nil {
  31. // return nil, fmt.Errorf("Fail to OpenFile :%v", err)
  32. // }
  33. //
  34. // return f, nil
  35. //}