You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Knox's Pozi Connect log file shows that the os.path.exists function fails on a valid UNC path.
Condition: os.path.exists('\\knox.local\fileserver\GIS\Data\Development\Property\data_in\LandVictoria\SpatialDatamart\VicmapSimplified1\latest\VMPROP\V_PARCEL_MP.tab') is False
This Stack Overflow comment suggests using os.path.isfile instead of os.path.exists.
Condition: os.path.isfile('\\knox.local\fileserver\GIS\Data\Development\property\data_in\LandVictoria\SpatialDatamart\VicmapSimplified1\latest\VMPROP\V_PARCEL_MP.tab') is False
@rdewit Thanks for your input. I didn't realise you were notified about issues or anything in this repo. I'll await further feedback from the council about another workaround I've suggested for them.
Knox's Pozi Connect log file shows that the
os.path.exists
function fails on a valid UNC path.This Stack Overflow comment suggests using
os.path.isfile
instead ofos.path.exists
.https://stackoverflow.com/questions/15077424/pros-and-cons-between-os-path-exists-vs-os-path-isdir#comment72540108_15077527
The text was updated successfully, but these errors were encountered: