Awesome Go

go-decent-copy

CategoryFile Handling
SubcategoryFile Handling
Stars0

Copy files for humans

About go-decent-copy

GoDoc Build Status Go Report Card codecov

Go-Decent-Copy

go-decent-copy provides a copy file for humans

Usage

package main

import "github.com/hugocarreira/go-decent-copy"

func main() {
    execPath, _ := os.Getwd()

    fileOrigin := fmt.Sprintf(execPath + "/testCopy.txt")
    fileDestiny := fmt.Sprintf(execPath + "/testCopied.txt")
    err := Copy(fileOrigin, fileDestiny)
    if err != nil {
        t.Fatalf("Error in copy file : %#v ", err.Error())
    }
}

License

This project is licensed under the MIT License.

Frequently Asked Questions

What is go-decent-copy?

go-decent-copy is a File Handling library for the Go programming language. Copy files for humans

How do I install go-decent-copy?

Install go-decent-copy with the Go module system using `go get hugocarreira/go-decent-copy`. Check the repository for the current installation instructions.

What category does go-decent-copy belong to?

go-decent-copy is listed under File Handling, specifically File Handling.

← Back to File Handling