VBScript GetTempName Method
last modified April 9, 2025
The GetTempName
method in VBScript is part of the
FileSystemObject
. It generates a random temporary file name that
can be used for temporary file operations. This method doesn't create the file,
just provides a unique name. It's commonly used with temporary file operations.
GetTempName
creates names in the format "radXXXXXX" where X is a
random character. The names are guaranteed to be unique during script execution.
This tutorial covers GetTempName
with practical examples to
demonstrate its usage.
GetTempName Method Overview
The GetTempName
method takes no parameters and returns a string
with a random temporary filename. It's available through the
FileSystemObject
in VBScript scripting. The method is often used
with GetSpecialFolder
to get the temp folder path.
Key features include guaranteed uniqueness and consistent naming format. It
doesn't create or verify file existence. GetTempName
is useful for
temporary data storage needs. Understanding this method helps create robust file
handling scripts.
Basic GetTempName Usage
This example demonstrates the simplest use of GetTempName
to
generate a random temporary filename. It shows how to call the method and
display the result. The filename follows the standard temporary file format.
Set fso = CreateObject("Scripting.FileSystemObject") tempName = fso.GetTempName() WScript.Echo "Temporary filename: " & tempName Set fso = Nothing
The script creates a FileSystemObject
and calls
GetTempName
. The result is a string like "rad12345.tmp". The
extension is typically .tmp but may vary. This name can be used to create a
temporary file.
Creating a Temporary File
This example shows how to combine GetTempName
with the temp folder
to create an actual temporary file. It demonstrates practical usage for
temporary data storage. The file is created in the system's temp directory.
Set fso = CreateObject("Scripting.FileSystemObject") tempFolder = fso.GetSpecialFolder(2) ' 2 = TemporaryFolder tempName = fso.GetTempName() tempPath = fso.BuildPath(tempFolder, tempName) Set tempFile = fso.CreateTextFile(tempPath) tempFile.WriteLine "This is temporary data" tempFile.Close WScript.Echo "Created temporary file: " & tempPath Set fso = Nothing
The script gets the system temp folder and generates a temp filename. It then combines them to create a full path. A text file is created at this path with sample content. This is a common pattern for temporary file usage.
Multiple Temporary Files
This example demonstrates generating multiple temporary filenames in sequence.
It shows how GetTempName
produces different names each call. The
names are displayed to show their uniqueness.
Set fso = CreateObject("Scripting.FileSystemObject") For i = 1 To 5 tempName = fso.GetTempName() WScript.Echo "Temp name " & i & ": " & tempName Next Set fso = Nothing
The script generates and displays five different temporary filenames. Each call
to GetTempName
produces a unique result. This is useful when
multiple temporary files are needed in a script. The names follow the same
format but with different random characters.
Temporary File with Custom Extension
This example shows how to create a temporary file with a custom extension instead of .tmp. It demonstrates modifying the generated name. The script replaces the default extension with a custom one.
Set fso = CreateObject("Scripting.FileSystemObject") tempName = fso.GetTempName() customName = Left(tempName, Len(tempName) - 3) & "log" WScript.Echo "Original: " & tempName WScript.Echo "Modified: " & customName Set fso = Nothing
The script generates a standard temp name then modifies its extension. The original .tmp extension is replaced with .log. This technique is useful when needing specific file types for temporary data. The base random name portion remains unchanged.
Temporary File Cleanup
This example demonstrates proper cleanup of temporary files created with
GetTempName
. It shows creating, using, and deleting a temporary
file. Proper cleanup is important for temporary files.
Set fso = CreateObject("Scripting.FileSystemObject") tempPath = fso.BuildPath(fso.GetSpecialFolder(2), fso.GetTempName()) Set tempFile = fso.CreateTextFile(tempPath) tempFile.WriteLine "Temporary data" tempFile.Close ' Use the file here... If fso.FileExists(tempPath) Then fso.DeleteFile(tempPath) WScript.Echo "Temporary file deleted: " & tempPath End If Set fso = Nothing
The script creates a temp file, uses it, then deletes it. The
FileExists
check prevents errors if the file was already deleted.
This pattern ensures no leftover temporary files. It's a best practice for
temporary file handling.
Source
FileSystemObject Documentation
In this article, we have explored the GetTempName
method in VBScript,
covering its usage and practical applications. From simple name generation to
complete temporary file lifecycle management, these examples demonstrate reliable
temporary file handling. With this knowledge, you can enhance your scripts with
proper temporary file operations.
Author
List all VBScript tutorials.