Are you talking about files named like this: MyFile..dot3
And what do you want to do with those files in ACCESS?

Signature
Ken Snell
<MS ACCESS MVP>
> Hello,
>
[quoted text clipped - 13 lines]
>
> Raymond
Hi Raymond,
Since you've asked in an Access newsgroup I presume you're only asking
about problems Access may have working with files that have more than
one dot in their names (or to put it another way, where there may be
one or more dots in the name as well as a dot between the name and the
extension.
Unfortunately there are some bits of code in and around Access (as of
Access 2003, I haven't checked 2007) that fail if there are multiple
dots. Presumably they are left over from 16-bit days and assume that
the first dot in a filename marks the beginning of a 3-character
exension. (Hands up anyone who hasn't written code that does that...)
I don't have chapter and verse. A recent thread in this group showed
that it's an issue with TransferText (but not, perhaps surprisingly,
with the even older VB file I/O functions). The subject was
File names causing a problem
starting on 7 August 2007.
Most likely the problem is confined to ancillary routines such as
TransferText. It should be possible to work round it when importing or
linking by using the short name corresponding to the multi-dotted
filename (you can get it by using the FileSystemObjectObject).
>Hello,
>
[quoted text clipped - 13 lines]
>
>Raymond
--
John Nurick - Access MVP
Ken Snell (MVP) - 12 Sep 2007 22:38 GMT
> Unfortunately there are some bits of code in and around Access (as of
> Access 2003, I haven't checked 2007) that fail if there are multiple
> dots. Presumably they are left over from 16-bit days and assume that
> the first dot in a filename marks the beginning of a 3-character
> exension. (Hands up anyone who hasn't written code that does that...)
Y (person staning with both hands up)
I've never done this.. < g >.
I always start at the end of the string and find the 'last" dot in order to
determine the beginning of an extension. But then, I'm a relatively newcomer
to programming.....! < chuckle >

Signature
Ken Snell
<MS ACCESS MVP>
Pieter Wijnen - 24 Sep 2007 10:32 GMT
And I always put dots in my dev folders to make sure never to do that (even
back in the 16 bits world)
I have had a few gotcha's with spaces though ... <g>
Pieter
>> Unfortunately there are some bits of code in and around Access (as of
>> Access 2003, I haven't checked 2007) that fail if there are multiple
[quoted text clipped - 9 lines]
> to determine the beginning of an extension. But then, I'm a relatively
> newcomer to programming.....! < chuckle >