PB2019R2, b2353
Window 10, 64 bit platform
Oracle 12C
Summary
Q: Is there a fix or a workaround for this?
Details
When I call DirectoryExists() or FileExists() and pass a path or a path & file defined as a UNC path, both functions lock up.
When passing a path or path & file with a drive letter, it works.
Example of a path & file that causes FileExists() to lock up.
ls_cfg = \\bizprod.com\dfs\dnv-data-usage\app1\MDBV5.CFG
lb_valid = FileExists (ls_cfg)
It doesn't fail or return - it just locks up.
The same path & file defined with a drive letter works:
ls_cfg = Q:\app1\MDBV5.CFG
lb_valid = FileExists (ls_cfg)
UPDATE: I just tested FileOpen(ls_cfg), and it also fails when the parameter is a UNC.
This did not occur in PBv12.1.
Thank You!