ASP Tutorial: Use FSO to get file names and get files or folders

Source: Internet
Author: User

Get file name
This example shows how to use the GetFileName method to get the path specified in the last part of the file name.

Let's take a look at the FSO. Get an instance of the filename.

<body>

<%
Set fs=server.createobject ("Scripting.FileSystemObject")

Response.Write ("The file name of the last component is:")
Response.Write (fs. GetFileName ("C:winntcursors3dgarro.cur"))
Set fs=nothing
%>


</body>

Output is.

The file name of the last component Is:3dgarro.cur

Get a file or folder of the base name
This example demonstrates how to use the Getbasename method to return a base name to a file or folder in the specified path.

FSO gets the name of the file or folder
Instance

<body>

<%
Set fs=server.createobject ("Scripting.FileSystemObject")

Response.Write (fs. Getbasename ("C:winntcursors3dgarro.cur"))
Response.Write ("<br/>")
Response.Write (fs. Getbasename ("C:winntcursors"))
Response.Write ("<br/>")
Response.Write (fs. Getbasename ("C:winnt"))

Set fs=nothing
%>

</body>

Output is.

3dgarro
Cursors
Winnt

Reprint please indicate from http://www.111cn.net/asp/asp.html

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.