青春纸盒子

文: 芦苇

你喜欢我笑的样子

我靠上了落寞的窗子

晚风吹起了我的袖子

明月沾湿了你的眸子


转身,你走出了两个人的圈子

树影婆娑,整座院子


挽起袖子

回头,把揽你忧伤一地的影子

装进,青春,这纸盒子


更多代码请关注我的微信小程序: "ecoder"

luwei0915

导航

82_Go基础_1_50 error

 1 package main
 2 
 3 import (
 4     "fmt"
 5     "os"
 6 )
 7 
 8 func main() {
 9     f, err := os.Open("test.txt")
10     if err != nil {
11         //log.Fatal(err)
12         fmt.Println(err) //open test.txt: no such file or directory
13         if ins, ok := err.(*os.PathError); ok {
14             fmt.Println(ins)
15             fmt.Println("1.Op:", ins.Op)     // 1.Op: open
16             fmt.Println("2.Path:", ins.Path) // 2.Path: test.txt
17             fmt.Println("3.Err:", ins.Err)   // 3.Err: The system cannot find the file specified.
18         }
19         return
20     }
21     fmt.Println(f.Name(), "打开文件成功。。")
22 
23 }

 

posted on 2021-12-02 16:08  芦苇の  阅读(25)  评论(0编辑  收藏  举报