Skip to content

Instantly share code, notes, and snippets.

View NisalSP9's full-sized avatar

Nisal Sanjaya Perera NisalSP9

View GitHub Profile
@NisalSP9
NisalSP9 / README-Template.md
Created May 7, 2018 05:43 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@NisalSP9
NisalSP9 / loop_files_folders_recursively.go
Created November 28, 2016 05:48 — forked from francoishill/loop_files_folders_recursively.go
Loop through files and folders recursively in golang
package main
import (
"fmt"
"os"
"path/filepath"
)
func main() ([]string, error) {
searchDir := "c:/path/to/dir"