I've searched for help through the archives, so I'm hoping this isn't a major
repeat.

I'm trying to save attached files with CFPOP into a directory on my webserver.
I've tried specifiying the exact path, using
#GetDirectoryFromPath(GetTemplatePath())# and contacting my hosting company for
help.

I'm not getting error messages when my application runs, but I'm also not
seeing the attachments in the directory. The path is being saved in the
database, to be used as a link later, but the attachment isn't ending up in the
directory.

When I CFDUMP the information from my query, the attachment files lists it as
saved in the path, so am I missing something very important?

Here's my code
<cfpop action="getall"
attachmentpath="#GetDirectoryFromPath(GetTemplateP ath())#"
userName="#the email address#"
password="#the password#"
server="# the server #"
name="popQuery">

CFdump returns this for attachmentfiles
C:\Domains\#mydomain#\wwwroot\submissions\picture( 29).jpg

I'm a little concerned that the attachment path isn't going to work as a link
in an <img src> tag because of the \ instead of / as well.