<%
virtPath = "\\mnbv00ww7044832\central engineer\OH\OSP Engineering\ATHN\2011"
''#virtPath = "C:\central engineer\OH\OSP Engineering\ATHN\2011"
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
if fs.FolderExists(virtPath) then
response.write(virtPath & " exits !!!")
else
response.write(virtPath & "does not exist")
end if
set fs=nothing
%>
このコードによると、パスを C:... として指定するとフォルダーが存在しますが、コンピューター名でアクセスしようとするとフォルダーが存在しないことが示されます。思いついたほとんどすべてを試しましたが、何らかの理由で解決策が見つかりません。基本的に、別のコンピューターのフォルダーにアクセスする必要があります。
ありがとうニック