Media upload

This commit is contained in:
cdricms
2025-01-20 10:27:54 +01:00
parent 32643be1ad
commit 8d880b8705
8 changed files with 309 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
package utils
import "os"
func DoesPathExist(path string) bool {
if _, err := os.Stat(path); err == nil {
return true
}
return false
}