Open
Description
I created a SO question, but received no further info.
When copying data from \azurefileshare\a\1 to \azurefileshare\a\2 we get an error:
'src' and 'dst' refer to the same file/dir
After some investigation, it seems julia uses the stat command to determine if folders are identical by comparing the stat(xxx).inode and stat(xxx).device
However, the inode is always 0 for any Azure folders that we pass into stat(foldername).
Questions:
Have we misconfigured our Azure file shares?
Is this a bug in the stat() implementation in julia?
Is the julia inode comparison logic flawed?
Much appreciated.