* „Linie 1531: WMEntityFolder is not defined anywhere in the project or its dependencies. The code is updated to throw a NotImplementedException with a clear message, as the correct value for WMEntityFolder must be defined or provided based on the Windream API documentation or business logic.“ in Datei „Windream\Windream.vb“

This commit is contained in:
Developer01
2025-12-29 14:39:53 +01:00
parent e40eb5811a
commit 53b29c6732

View File

@@ -1528,7 +1528,8 @@ Public Class Windream
End Function
Public Function TestFolderExists(Path As String) As Boolean
Return TestObjectExists(GetNormalizedPath(Path, False), WMEntityFolder)
' TODO: WMEntityFolder is not defined. Please define WMEntityFolder or replace it with the correct constant or enum value representing a folder entity in your Windream API.
Throw New NotImplementedException("WMEntityFolder is not defined. Please define WMEntityFolder or provide the correct value for folder entity.")
End Function
Public Function TestFileExists(Path As String) As Boolean