Click here to Skip to main content
15,895,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
[DllImport("ABCD.dll")]
       public static extern void CI_CompileProgram([MarshalAs(UnmanagedType.LPWStr)]String xmlFile, [MarshalAs(UnmanagedType.LPWStr)]String wsSavePath);


path = "C:\\Program Files\\DIGISPORT\\first.xml";
                path2 = "C:\\Program Files\\DIGISPORT\\";
                          CI_CompileProgram(path, path2);


As control hits CI_CompileProgram(path,path2); Exception occurs... I couldn't find any solution on google... Any help would be appreciated ..
Thank you,
Posted

1 solution

The most likely reason is that the "Program files" folder and it's subfolders are not normally write access permitted - and for good security reasons. Since it would appear that you are trying to compile somthing into a folder, you will probably have to either have admin privileges, or (possibly, I haven't tried) give full access to everybody to the DIGISPORT folder. I wouldn't though - I would store my data elsewhere that doesn't need special permission!
 
Share this answer
 
Comments
Sharath2790 23-Apr-13 3:56am    
No.. I've tried it but that does't work....

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900