Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

C# temporary files

// Creates a file and returns the path.
var path = Path.GetTempFileName();
File.WriteAllText(path, "Hello, World!");
Source by softwareengineering.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #temporary #files
ADD COMMENT
Topic
Name
2+2 =