github.com/fzfile/BaiduPCS-Go@v0.0.0-20200606205115-4408961cf336/internal/pcsfunctions/pcscaptcha/captchapath.go (about) 1 package pcscaptcha 2 3 import ( 4 "os" 5 "path/filepath" 6 ) 7 8 // CaptchaPath 返回验证码存放路径 9 func CaptchaPath() string { 10 return filepath.Join(os.TempDir(), CaptchaName) 11 }