Click here to Skip to main content
15,891,473 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to access the file of the folder which I have created in the resource folder.
How can I access the folder and access the files?
Thanks.

Regards,

Saillesh
Posted
Updated 23-May-13 20:16pm
v2
Comments
Manoj K Bhoir 24-May-13 2:32am    
Just Use [Your Application Name].Properties.Resources.[ResourceName]

1 solution

If the file was added to a .resx resource (this is used for most console/WinForms applications), your application will have a Properties property with a Resources property containing all of your resources.

They are typed using the most logical types. For example a text file will be a string, a JPEG will be a System.Drawing.Bitmap etc. If you need the resource is a different format or type, there are methods available to retrieve the resource in other ways e.g. a Stream.
 
Share this answer
 

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