Saving the files word generated fiels

dear concern ,

i want to know the how to select the user dynamic folder.

in that folder i use to save the word documents with uniqu id .doc …

so how to select the folder using aspose.word. keywords

Hi

Thanks for your inquiry. You can specify folder directly in the Save method. See the following code for example.

doc.Save(@"C:\Temp\out.doc");

Hope this helps.

Best regards.

what you suggest is i know and i want to know that is…

step one i want to select the folder…

i will get the documents like this…

asdf00001.doc ,asdf00002.doc … so all documents i generated passing the ids… so i need to stored it in a particular folder…

in that user defined folder… either in c,d,e,f, any drive user wish…

in that folder i need to save all files…

regards

amareswari

Hi

Thanks for your inquiry. I think you should use FolderBrowserDialog. See the following link for more information.

http://msdn.microsoft.com/en-us/library/z9xd9461.aspx

Best regards.

where to save the files to?

Hi

Thanks for your inquiry. You can save files where ever you want. If you create windows application you can use BrowserFolderDialog to select folder where you would like to store generated files. This is only one option. You can also hardcode path to folder or use SaveFileDialog.

Best regards.