|
it
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Server.Mappath Help
Currently, the images reside in a subfolder of the root, and this works fine. I understand the main problem here is my limited knowlege of ASP. Here's the current setup: c:\testproj\imageviewer = Virtual directory named "IMGviewer" c:\testproj\imageview\upload\pics = folder that contains images The following code works: ImageConn = "pics/" Set fso = CreateObject("Scripting.FileSystemObject") 'Set fattributes = fso.GetFolder(server.mappath(""&ImageConn&"")) The problem is, the images are in another folder: c:\testfolder\myimages\pics_5 I've tried the following, and get a "path not found" error. Set fattributes = fso.GetFolder("c:\testfolder\myimages\pics_5\") Set fattributes = fso.GetFolder("c:\testfolder\myimages\pics_5") Set fattributes = fso.GetFolder("//servername/c$/testfolder/myimages/pics_5") Set fattributes = fso.GetFolder("//servername/c$/testfolder/myimages/pics_5/") Can anyone tell me what I'm doing wrong? Thanks. Y2K On Mon, 26 Jun 2006 15:28:02 -0700, Y2K
<Y**@discussions.microsoft.com> wrote: Show quote >I have a thumbnail viewer which displays images on a webpage. Trying to access a folder with an incorrect path. :)>Currently, the images reside in a subfolder of the root, and this works >fine. I understand the main problem here is my limited knowlege of >ASP. > >Here's the current setup: >c:\testproj\imageviewer = Virtual directory named "IMGviewer" >c:\testproj\imageview\upload\pics = folder that contains images > > >The following code works: >ImageConn = "pics/" >Set fso = CreateObject("Scripting.FileSystemObject") >'Set fattributes = fso.GetFolder(server.mappath(""&ImageConn&"")) > > >The problem is, the images are in another folder: >c:\testfolder\myimages\pics_5 > > >I've tried the following, and get a "path not found" error. >Set fattributes = fso.GetFolder("c:\testfolder\myimages\pics_5\") >Set fattributes = fso.GetFolder("c:\testfolder\myimages\pics_5") >Set fattributes = >fso.GetFolder("//servername/c$/testfolder/myimages/pics_5") >Set fattributes = >fso.GetFolder("//servername/c$/testfolder/myimages/pics_5/") > > >Can anyone tell me what I'm doing wrong? Most likely the folder in question doesn't have permission for the account accessing it. Jeff
Show quote
"Jeff Cochran" wrote: Ok.. not having permissions is fine.. I can fix that. What's the correct > On Mon, 26 Jun 2006 15:28:02 -0700, Y2K > <Y**@discussions.microsoft.com> wrote: > > >I have a thumbnail viewer which displays images on a webpage. > >Currently, the images reside in a subfolder of the root, and this works > >fine. I understand the main problem here is my limited knowledge of > >ASP. > > > >Here's the current setup: > >c:\testproj\imageviewer = Virtual directory named "IMGviewer" > >c:\testproj\imageview\upload\pics = folder that contains images > > > > > >The following code works: > >ImageConn = "pics/" > >Set fso = CreateObject("Scripting.FileSystemObject") > >'Set fattributes = fso.GetFolder(server.mappath(""&ImageConn&"")) > > > > > >The problem is, the images are in another folder: > >c:\testfolder\myimages\pics_5 > > > > > >I've tried the following, and get a "path not found" error. > >Set fattributes = fso.GetFolder("c:\testfolder\myimages\pics_5\") > >Set fattributes = fso.GetFolder("c:\testfolder\myimages\pics_5") > >Set fattributes = > >fso.GetFolder("//servername/c$/testfolder/myimages/pics_5") > >Set fattributes = > >fso.GetFolder("//servername/c$/testfolder/myimages/pics_5/") > > > > > >Can anyone tell me what I'm doing wrong? > > Trying to access a folder with an incorrect path. :) > > Most likely the folder in question doesn't have permission for the > account accessing it. > > Jeff > path? Are you saying I'm getting that error because the path cannot be found due to insufficient permissions? Y2k |
|||||||||||||||||||||||