Forum Post: Re: Best Way To Create A Temporary Unique File-name?

Status
Not open for further replies.
O

olivier.dunemann

Guest
If you are wandering in the wonderful world of Microsoft, the System.IO.Path:GetTempFileName() method should help you too. https://msdn.microsoft.com/en-us/library/system.io.path.gettempfilename%28v=vs.110%29.aspx
Code:
 DEF VAR cFileName AS CHAR NO-UNDO. cFileName = System.IO.Path:GetTempFileName(). MESSAGE cFileName VIEW-AS ALERT-BOX INFO BUTTONS OK. OS-DELETE VALUE(cFileName).

Continue reading...
 
Status
Not open for further replies.
Top