doubi3996 2017-07-09 21:31
浏览 61
已采纳

如何定义一个空变量来存储File结构的值?

I am trying to figure out a way to declare an empty variable to store the return values of os.Create and os.Open. Code:

func main() {

  var path = "list.txt"
  // Some attempts:
  // var file File{}
  // var file *File

  // Check if file exists
  var _, err = os.Stat(path)

  // If new file, create it
  if os.IsNotExist(err) {
    var file, err = os.Create(path)

    // If file exists, open it
  } else {
    var file, err = os.Open(path)
  }

  // Check errors opening and creating file
  if err != nil {
    log.Fatal(err)
    return
  }

  // Defer closing file
  defer file.Close()

}

Both attempts result in the following error:

./main.go:13: undefined: File

I'm sure this is one of those things that I don't know I don't know. What I do know:

  • Per os/file.go, type of the return value I'm looking for is *File
  • That type is defined in os/file_unix.go as a struct

Can someone explain to me:

  1. How do I create an empty variable that can then be used to store the first variable in the results of os.Create and os.Open.
  2. Why were my two attempts wrong?
  3. Anything else that I'm misunderstanding.
  • 写回答

1条回答 默认 最新

  • dpecb06062 2017-07-09 21:35
    关注

    Defining variable is var <variable-name> <type>, learn more about variables.

    var file *os.File
    var err error
    

    Your updated code:

    func main() {
      path := "list.txt"
    
      var file *os.File
      var err error
    
      // Check if file exists
      if err = os.Stat(path); os.IsNotExist(err) {
        file, err = os.Create(path)
      } else { // If file exists, open it
        file, err = os.Open(path)
      }
    
      // Check errors opening and creating file
      if err != nil {
        log.Fatal(err)
        return
      }
    
      // Defer closing file
      defer file.Close()
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 有没有帮写代码做实验仿真的
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥30 vmware exsi重置后登不上
  • ¥15 易盾点选的cb参数怎么解啊
  • ¥15 MATLAB运行显示错误,如何解决?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题
  • ¥20 yolov5自定义Prune报错,如何解决?