继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

golang 实现文件拷贝的2种方式

holdtom
关注TA
已关注
手记 1846
粉丝 240
获赞 991


package main

import (

    "fmt"

    "io"

    "os"

    "path/filepath"

    "strconv"

)

var BUFFERSIZE int64

func Copy1(src, dst string, BUFFERSIZE int64) error {

    sourceFileStat, err := os.Stat(src)

    if err != nil {

        return err

    }

    if !sourceFileStat.Mode().IsRegular() {

        return fmt.Errorf("%s is not a regular file", src)

    }

    source, err := os.Open(src)

    if err != nil {

        return err

    }

    defer source.Close()

    _, err = os.Stat(dst)

    if err == nil {

        return fmt.Errorf("file %s already exists", dst)

    }

    destination, err := os.Create(dst)

    if err != nil {

        return err

    }

    defer destination.Close()

    if err != nil {

        panic(err)

    }

    buf := make([]byte, BUFFERSIZE)

    for {

        n, err := source.Read(buf)

        if err != nil && err != io.EOF {

            return err

        }

        if n == 0 {

            break

        }

        if _, err := destination.Write(buf[:n]); err != nil {

            return err

        }

    }

    return err

}

func Copy(src, dst string) (int64, error) {

    sourceFileStat, err := os.Stat(src)

    if err != nil {

        return 0, err

    }

    if !sourceFileStat.Mode().IsRegular() {

        return 0, fmt.Errorf("%s is not a regular file", src)

    }

    source, err := os.Open(src)

    if err != nil {

            return 0, err

    }

    defer source.Close()

    destination, err := os.Create(dst)

    if err != nil {

        return 0, err

    }

    defer destination.Close()

    nBytes, err := io.Copy(destination, source)

    return nBytes, err

}

func main() {

    if len(os.Args) != 4 {

        fmt.Printf("usage: %s source destination BUFFERSIZE\n",

            filepath.Base(os.Args[0]))

        os.Exit(1)

    }

    source := os.Args[1]

    destination := os.Args[2]

    BUFFERSIZE, _ = strconv.ParseInt(os.Args[3], 10, 64)

    fmt.Printf("Copying %s to %s\n", source, destination)

    err := Copy1(source, destination, BUFFERSIZE)

    if err != nil {

        fmt.Printf("File copying failed: %q\n", err)

    }

}

©著作权归作者所有:来自51CTO博客作者暮色伊人的原创作品,如需转载,请注明出处,否则将追究法律责任


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP