fileExists returns true if the filename is found
(filename string)
| 44 | |
| 45 | // fileExists returns true if the filename is found |
| 46 | func fileExists(filename string) bool { |
| 47 | if _, err := os.Stat(filename); err == nil { |
| 48 | return true |
| 49 | } |
| 50 | return false |
| 51 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…