HOME > ASP > ASP Forum > ช่วยดึงฐานข้อมูลให้หน่อยค่ะ จนปัญญาแล้ว ไฟล์ที่เขียนเว็บ (ใช้ ASP เขียนค่ะ) แล้วใน Drive M: มีโฟเดอร์ดังนี้ Account antivirus driver entertian font game graffice ipcop MyWeb network office os utility web w
ช่วยดึงฐานข้อมูลให้หน่อยค่ะ จนปัญญาแล้ว ไฟล์ที่เขียนเว็บ (ใช้ ASP เขียนค่ะ) แล้วใน Drive M: มีโฟเดอร์ดังนี้ Account antivirus driver entertian font game graffice ipcop MyWeb network office os utility web w
%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFolder("c:\inetpub\wwwroot\")
Response.Write("The folder was last modified on: ")
Response.Write(f.DateLastModified)
set f=nothing
set fs=nothing
%>
แล้วเอาค่าที่ได้ ไปใช้งาน
หรือ พวก
<%
dim fs,p
set fs=Server.CreateObject("Scripting.FileSystemObject")
p=fs.GetParentFolderName("c:\winnt\cursors\3dgarro.cur")
Response.Write(p)
set fs=nothing
%>