Skip to content

Instantly share code, notes, and snippets.

@crgimenes
Created August 3, 2018 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crgimenes/fb6ae9559f810cc194b9dcd135a23738 to your computer and use it in GitHub Desktop.
Save crgimenes/fb6ae9559f810cc194b9dcd135a23738 to your computer and use it in GitHub Desktop.
Filename for temp files
func newFileName() string {
buff := make([]byte, 6)
rand.Read(buff)
return fmt.Sprintf("%v-%X\n", time.Now().UTC().Format("2006-01-02T150405"), buff)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment