Vbscript obtains the file creation time, last modification time, and last access time.

Source: Internet
Author: User
This article describes how to obtain the file creation time, last modification time, and last access time using vbscript. This article is implemented using the FileSystemObject object. For more information, see
Set fso = createobject ("Scripting. fileSystemObject ") set fn = fso. getFile ("E: \ AD.txt") msgbox "File Creation Time:" & fn. dateCreatedmsgbox "Last file modification time:" & fn. dateLastModifiedmsgbox "Last file access time:" & fn. dateLastAccessedset fn = nothingset fso = nothing

Introduction to FileSystemObject objects:

The FileSystemObject object is used to access the file system on the server. This object can be used to operate files, folders, and directory paths. You can also use this object to about the file system.
The following code creates a text file (c: \ test.txt) and then writes some text to the file:

<% Dim fs, fname set fs = Server. createObject ("Scripting. fileSystemObject ") set fname = fs. createTextFile ("c: \ test.txt", true) fname. writeLine ("Hello World! ") Fname. Closeset fname = nothingset fs = nothing %>

For more information about how to obtain the file creation time, last modification time, and last access time using vbscript, see PHP!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.