| Retrieving TEMP path and file name |
by Steven Sartain |
Published
03/05/2002
|
.NET Framework
|
Rating:/Images/RateSecA.gif) /Images/RateSecA.gif) /Images/RateSecI.gif) /Images/RateSecI.gif)
|
|
|
Steven Sartain
 Steven Sartain is a consultant currently designing and leading a VB.NET project using n-tier architecture and WebServices for Accuride International Ltd.
During his 8 year career as a developer and development lead, Steve has designed and implemented a diverse number of mission critical software solutions using VB, VBA, MS Access, C/C++, ASP, Delphi, DCOM & MTS, SQL Server, Oracle, SQL Anywhere and others. See his Resume for details.
He is also a Director of Iridium Software - a UK based bespoke software development house.
Steve is always open to take over a challenging programming opportunity. If you experience a need for a professional consultant who has all the necessary skills to take a proposition from first client meeting through to profitably and elegantly completed projects; I'm sure Steve could assist. See his Resume and Professional Statement for details.
View all articles by Steven Sartain...
Retrieving TEMP path and file name
How to retrieve TEMP path and file name
Start a new project then add a module. Add the following code to the module:
'Author: Steven Sartain
'Last Revision: 28th August 2001
'Revision Notes: None
'Supported environments:
' Yes No Untested
' VB4 X
' VB5 X
' VB6 X
' VB.NET(beta2) X
Namespace vbCity
Public Module modFunctions
Public Function GetTempDir() As String
Return System.IO.Path.GetTempPath
End Sub
Public Function GetTempFileName() As String
Return System.IO.Path.GetTempFileName
End Sub
End Module
End Namespace
|
|
|
How would you rate the quality of this article?
Tell us why you rated this way (optional):
|
|
Article Rating
The average rating is:
No-one else has rated this article yet.
| Article rating: | 2.5 out of 5 |
| | 2 people have rated this page |
| Article Score | 7258 |
|
|
|