บทช่วยสอน ASP

ASP HOME

กวดวิชา WP

แนะนำหน้าเว็บ มีดโกนหน้าเว็บ เค้าโครงหน้าเว็บ โฟลเดอร์หน้าเว็บ หน้าเว็บทั่วโลก แบบฟอร์มหน้าเว็บ วัตถุหน้าเว็บ ไฟล์หน้าเว็บ ฐานข้อมูลหน้าเว็บ ผู้ช่วยหน้าเว็บ หน้าเว็บ WebGrid แผนภูมิหน้าเว็บ อีเมลหน้าเว็บ ความปลอดภัยของหน้าเว็บ เผยแพร่หน้าเว็บ ตัวอย่างหน้าเว็บ ชั้นเรียนของหน้าเว็บ

มีดโกน ASP.NET

แนะนำมีดโกน มีดโกนไวยากรณ์ มีดโกน C# ตัวแปร มีดโกน C# ลูป มีดโกน C# Logic ตัวแปรมีดโกน VB มีดโกน VB Loops มีดโกน VB Logic

ASP Classic

แนะนำ ASP ไวยากรณ์ ASP ตัวแปร ASP ขั้นตอน ASP เงื่อนไข ASP ASP วนรอบ แบบฟอร์ม ASP คุกกี้ ASP เซสชัน ASP แอปพลิเคชัน ASP ASP #รวม ASP Global.asa ASP AJAX อีเมล ASP ตัวอย่าง ASP

การอ้างอิง ASP

ฟังก์ชัน ASP VB คีย์เวิร์ด ASP VB การตอบสนอง ASP คำขอ ASP แอปพลิเคชัน ASP เซสชัน ASP เซิร์ฟเวอร์ ASP ข้อผิดพลาด ASP ASP FileSystem ASP TextStream ไดรฟ์ ASP ไฟล์ ASP โฟลเดอร์ ASP พจนานุกรม ASP ASP AdRotator ASP BrowserCap การเชื่อมโยงเนื้อหา ASP ตัวหมุนเนื้อหา ASP ASP Quick Ref

กวดวิชา ADO

แนะนำ ADO ADO Connect ชุดระเบียน ADO จอแสดงผล ADO แบบสอบถาม ADO ADO Sort เพิ่ม ADO ADO Update ADO ลบ สาธิต ADO ADO เร่งความเร็ว

วัตถุ ADO

คำสั่ง ADO การเชื่อมต่อ ADO ข้อผิดพลาด ADO ADO Field พารามิเตอร์ ADO ADO พร็อพเพอร์ตี้ บันทึก ADO ชุดระเบียน ADO ADO สตรีม ประเภทข้อมูล ADO

วัตถุไฟล์ ASP


ออบเจ็กต์ File ใช้เพื่อส่งคืนข้อมูลเกี่ยวกับไฟล์ที่ระบุ


ตัวอย่างเพิ่มเติม


วิธีรับวันที่และเวลาที่ไฟล์ที่ระบุถูกแก้ไขครั้งล่าสุด


วิธีรับวันที่และเวลาที่เข้าถึงไฟล์ที่ระบุครั้งล่าสุด


วิธีคืนค่าแอตทริบิวต์ของไฟล์ที่ระบุ


วัตถุไฟล์

ออบเจ็กต์ File ใช้เพื่อส่งคืนข้อมูลเกี่ยวกับไฟล์ที่ระบุ

ในการทำงานกับคุณสมบัติและวิธีการของวัตถุ File คุณจะต้องสร้างอินสแตนซ์ของวัตถุ File ผ่านวัตถุ FileSystemObject อันดับแรก; สร้างวัตถุ FileSystemObject แล้วสร้างอินสแตนซ์ของวัตถุ File ผ่านเมธอด GetFile ของวัตถุ FileSystemObject หรือผ่านคุณสมบัติ Files ของวัตถุโฟลเดอร์

รหัสต่อไปนี้ใช้วิธี GetFile ของวัตถุ FileSystemObject เพื่อสร้างอินสแตนซ์ของวัตถุ File และคุณสมบัติ DateCreated เพื่อส่งกลับวันที่เมื่อสร้างไฟล์ที่ระบุ:

ตัวอย่าง

<%
Dim fs,f
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Set f=fs.GetFile("c:\test.txt")
Response.Write("File created: " & f.DateCreated)
set f=nothing
set fs=nothing
%>


คุณสมบัติและวิธีการของอ็อบเจ็กต์ File อธิบายไว้ด้านล่าง:

คุณสมบัติ

Property Description
Attributes Sets or returns the attributes of a specified file
DateCreated Returns the date and time when a specified file was created
DateLastAccessed Returns the date and time when a specified file was last accessed
DateLastModified Returns the date and time when a specified file was last modified
Drive Returns the drive letter of the drive where a specified file or folder resides
Name Sets or returns the name of a specified file
ParentFolder Returns the folder object for the parent of the specified file
Path Returns the path for a specified file
ShortName Returns the short name of a specified file (the 8.3 naming convention)
ShortPath Returns the short path of a specified file (the 8.3 naming convention)
Size Returns the size, in bytes, of a specified file
Type Returns the type of a specified file

วิธีการ

Method Description
Copy Copies a specified file from one location to another
Delete Deletes a specified file
Move Moves a specified file from one location to another
OpenAsTextStream  Opens a specified file and returns a TextStream object to access the file