I have a Web Service that calls another Executable which fetches a list of files and stores them at a temporary location, which will in turn be read by the web service.
I thought i will use the system's temp folder and found out that i could use System.IO.Path.GetTempPath
function to get the temp folder and store my files here. But when i checked the output returned by this function it gave me
C:\Users\username\AppData\Local\Temp\15\
i am worried about the \15 at the end of the path. Does this mean that the temp folder returned by GetTempPath is not constant and keeps changing? I need it to be constant since i need the web service to read from the temp files output by the executable