Skip to content

Instantly share code, notes, and snippets.

@meetme2meat
Created July 28, 2020 09:49
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 meetme2meat/49200c2880edfeec291e5c580f7f4725 to your computer and use it in GitHub Desktop.
Save meetme2meat/49200c2880edfeec291e5c580f7f4725 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"io/ioutil"
"log"
)
func main() {
files, err := ioutil.ReadDir("/data/cdrs/cv2/swoffnet/alliance/")
if err != nil {
log.Fatal(err)
}
for _, f := range files {
fmt.Printf("%v -- > %v\n",f.Name(), []rune(f.Name()))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment