Popularity
2.2
Stable
Activity
0.0
Stable
21
3
8

Programming language: Go
License: MIT License
Tags: Files    

go-decent-copy alternatives and similar packages

Based on the "Files" category.
Alternatively, view go-decent-copy alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of go-decent-copy or a related project?

Add another 'Files' Package

README

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](LICENSE).


*Note that all licence references and agreements mentioned in the go-decent-copy README section above are relevant to that project's source code only.