我的代码是这样的:
Public Declare Function _tempnam Lib "C:\Windows\System32\msvcr120.dll" Alias "_tempnam" (
ByVal dir As String,
ByVal prefix As String) As String
在按钮单击方法中:
dim pszTempName as string = _tempnam("", "xx")
MsgBox(pszTempName)
MsgBox(My.Computer.FileSystem.FileExists(pszTempName))
结果是(作为例子):
C:\用户\个人\应用程序数据\本地\ xx87
假
我的问题是该文件不存在的原因?