I am using c# Express.
I have created an application that searches for content files(images and sounds) infolders located in the same directory as the application's .exe file.
Is it possible to have Clickonce install my application's content files as part of a directory structure rather than a bunch of loose files in the same place as the exefile?
such as:
Appfolder <<Dont Care if this is unknown I'musing Directory.GetCurrentDirectory()
App.Exe
MediaFolder
SoundsFolder
ImagesFolder
Can I even use the IOclasses with a Clickonce App<<I assumed I could using a full trust application.
My installed application is producing a System.IO.Directorynotfound exception when it exectues and I am assuming this is because the directory structure I want my installed application to have(regardless ofabsolute path whichI determine at runtime)is not the case on the target machine.
Thanks in advance for your time.