hariprasadraja
10/3/2019 - 6:17 AM

go file rename

renames the file or the files path

	originalPath, newPath := "", ""
	err := os.Rename(originalPath, newPath)
	if err != nil {
		log.Fatal(err)
	}