I have a file geodatabase on an azure file share and I'm having trouble using arcpy to list feature classes stored within. The path is along these lines: \\xyz.file.core.windows.net\tools\testing\test_data.gdb.
No matter what I try the returned list is always empty. Is there a specific path format that an azure based FGDB should be referenced when setting it as the workspace before running arcpy.ListFeatureClasses()?
I've tested the below path string using os.path.exists and returns true, but running arcpy.ListFeatureClasses() after returns an empty list.
arcpy.env.workspace = r"\\xyz.file.core.windows.net\\tools\\testing\\test_data.gdb".