gitlab.com/evatix-go/core@v1.3.55/internal/internalinterface/internalpathextender/IsPathChecker.go (about) 1 package internalpathextender 2 3 type IsPathChecker interface { 4 // IsFile 5 // 6 // Will be set during creation. 7 IsFile() bool 8 // IsDir 9 // 10 // Will be set during creation. 11 IsDir() bool 12 IsExist() bool 13 }