Hello,
i am using following lines of code to create a folder and save files in it:
string path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
string folderName = @"\" + "Files_"+ DateTime.Now.ToString("yyyyMMdd");
System.IO.Directory.CreateDirectory(path + folderName);
dividendWarrant.ExportToDisk(ExportFormatType.PortableDocFormat,path + folderName + @"\Files"+"["+type+ "].pdf");
the above piece of code works perfectly fine on the development server. However, when i deploy my application i am unable to find where the folder is created and i am unable to find the same on the clients desktop.
Any suggestion as to how this can be done?
Thanks!
Best Regards,
Rohan Laghate