Popularity
2.2
Stable
Activity
0.0
Stable
22
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.
-
bigfile
DISCONTINUED. Bigfile -- a file transfer system that supports http, rpc and ftp protocol https://bigfile.site -
go-exiftool
Golang wrapper for Exiftool : extract as much metadata as possible (EXIF, ...) from files (pictures, pdf, office documents, ...) -
fileconversion
A Go library to convert various file formats to plaintext and provide related functions -
go-staticfiles
Collects assets (css, js, images...) from a different locations and tags file names with a hash for easy versioning and aggressive caching.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of go-decent-copy or a related project?
README
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.