SQL PHP HTML ASP JavaScript articles and free scripts to download
 

Getting the file extension and main part name

We can collect the main file name and the extension or type of the file name by using file system object in ASP. We will use the object GetExtensionName to collect the extension or file type name. Same way we can use GetFileName to get the main part of the file name. To know the base directory of the file we can use GetBaseName object.

We will use the server map path to declare the path of the file and then use the FileExists to find out the existence of the file.


Here is the complete code.


Dim OpenFileobj, FSOobj,FilePath
FilePath=Server.MapPath("images/all11.css")
Set FSOobj = Server.CreateObject("Scripting.FileSystemObject")
if FSOobj.fileExists(FilePath) Then

Response.Write "file Exist"
Response.Write "<br>File Extension Name: "&FSOobj.GetExtensionName(FilePath)
Response.Write "<br>File Name: "&FSOobj.GetFileName(FilePath)
Response.Write "<br>File Base Name: "&FSOobj.GetBaseName(FilePath)
Response.Write "<br>File Base Name: "&FSOobj.GetBaseName("K:php_filesafile")
Else
Response.Write "File does not exist"
End if
Set FSOobj = Nothing


Further readings
Server.MapPath to convert virtual path to physical path of files and directory.
FileSystemObject:Checking file or folder exist by using File system object .
Getting the file name from full path of the current running script in ASP.
Getting the file extension and file name by using FSO
Deleting file by using DeleteFile in FSO
Getting the Last updating and creation date and time of a file.
Listing all files present inside a folder using FileSystemObject
Reading data from a text file using File System Object
Writing data to a text file using File System Object
Read & Writing data to a text file: Developing a page hit counter
Appending data to a text file: Storing emails in a text file
 
Scripts
PHP
JavaScript
All ASP Tutorials
File Management
MapPath
FileSystemObject
append
name
Updating Time
Listing all files
Reading file
Writing file
Read & Write
File type
Delete File
Popular Tutorials
Managing two drop downs
ASP Tutorials
Date and time
Declaring array
Form in ASP
Server.MapPath
Date Time & MSSQL
Select Query
File System Object
Subscribe
Submit your email address and receive article and product notifications. Your email is safe with us.