|
|
@ -22,13 +22,14 @@ import ( |
|
|
|
|
|
|
|
|
|
|
|
// DoesFileExists checks if the file exists.
|
|
|
|
// DoesFileExists checks if the file exists.
|
|
|
|
func DoesFileExists(name string) bool { |
|
|
|
func DoesFileExists(name string) bool { |
|
|
|
if _, err := os.Stat(name); err != nil { |
|
|
|
if _, err := os.Stat(name); err == nil { |
|
|
|
if os.IsNotExist(err) { |
|
|
|
return true |
|
|
|
return false |
|
|
|
} else if os.IsNotExist(err) { |
|
|
|
} |
|
|
|
return false |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
log.Errorln(err) |
|
|
|
|
|
|
|
return false |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return true |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// GetRelativePathFromAbsolutePath gets the relative path from the provided absolute path.
|
|
|
|
// GetRelativePathFromAbsolutePath gets the relative path from the provided absolute path.
|
|
|
|