Hi
I'm currently developing a plug in to work with CRM using C# and using a class library in visual studio 2013
The plugin will be outputting CSV files to use with a different piece of software.
The files will be created when the user creates a new customer in CRM for example
My question is how do I output different CSV files in the same location folder without them overriding each other
A way of giving the files a name would be ideal, but so far all I've been able to find is writing a file path in the actual code which would mean all CSV files being stored under the same name which would mean them being overridden
Thanks