Fixes #814
os.Stat returns syscall.ENOTDIR , if trying to stat a nested file/directory in an existing file.
e.g.
Existing file: foo
Try to stat: foo/bar
The implementation converts syscall.ENOTDIR os error to s3err.ErrObjectParentIsFile in PutObject in posix.
Fixes #814 os.Stat returns
syscall.ENOTDIR
, if trying to stat a nested file/directory in an existing file. e.g. Existing file: foo Try to stat: foo/bar The implementation convertssyscall.ENOTDIR
os error to s3err.ErrObjectParentIsFile inPutObject
in posix.