With current working drive/directory directed to the unit's share:
echo blah > a.b
echo blah > a.c
echo blah > d.e
echo blah > f.e
creates files as expected, and:
del a.*
works, but:
del *.e
fails, reporting that file "*.e" is "not found". Failure occurs from both XP and Vista hosts.
The same operations all work on a "real" SMB share.
--
egr
Once I know where the right threads "live", I'll want to read them, and possibly repost relevant data from this post there.
Regarding filename completion: that it seems to work better with rooted, rather than relative paths might shed some light on root cause for both it and for wildcard problems.
Also, I may also have observed the mkdir issue and/or something similar/related: in particular, I'm seeing "the operation is not supported" in error messages, and this may be dependent on particular (perfectly legal) characters in the directory pathname. One suspect may be the '%' character, which a number of apps (most painfully, Cygwin setup) use to URLencode network pathnames for representation within the filesystem. Interestingly, these paths copy fine when using Explorer; but XCOPY and a number of other apps (that may be using an older API call--just a guess, as it's been a while since I've poked through those parts of the Windows SDK documents) choke on them.
"FIN"ally, would a wild guess that the FlexNet uses a Linux-based SaMBa implementation "under the hood" of the NAS point toward root cause and/or solutions of any of the issues?
--
egr