Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C#: Accessing files added to project folder

Tags:

c#

how can i access files I've included in the project folder in Visual C# Windows Application... I've created a folder in the solution and I've added some files. Now, My problem is how to access them?

In ASP.NET C# there is ResolveUrl / Url.Content... etc... In Visual C#? what should i do?

like image 968
Roberto Becher Avatar asked Sep 26 '11 06:09

Roberto Becher


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

Is C language easy?

Compared to other languages—like Java, PHP, or C#—C is a relatively simple language to learn for anyone just starting to learn computer programming because of its limited number of keywords.


1 Answers

In the properties of those files you could set Copy to Output Directory to Copy if newer and so everytime you run the application they will be copied to the bin/Debug folder alongside with the executable and in your application you could access them as relative files: File.ReadAllText("myfile.txt");:

enter image description here

like image 78
Darin Dimitrov Avatar answered Oct 04 '22 15:10

Darin Dimitrov