Thanks to visit codestin.com
Credit goes to github.com

Skip to content

dastoori/higgs

Repository files navigation

go-fshide

A tiny Go library to hide/show files and directories

GitHub Workflow Status codecov GitHub release
Go Reference GitHub go.mod Go version No Dependency GitHub

Installation

$ go get github.com/dastoori/go-fshide

Usage

package main

import (
	"fmt"
	"github.com/dastoori/go-fshide"
)

func main() {
	err := fshide.Hide("./path-to-hide", true)
	
	if err != nil {
		fmt.Println(err)
	}
}

TODO

  • Windows support