vote up 1 vote down star

I added a text file to a testapp's solution and I want to read said file. I don't remember how to do this, I know it has to do with reflections but I need a push in the right direction.

flag

78% accept rate

4 Answers

vote up 2 vote down check

If you add the text file to a .ResX file, you can have all the benefits (dynamic updating, for instance) AND not need to worry about interacting with an actual file. VB will automatically create a class to access the file - suppose you have Resources.resx. You can access it with My.Resources.MyFile - it will return a string.

link|flag
even better, thanks a lot :D – Anders Dec 1 '08 at 19:30
vote up -1 vote down

I was going to write some code, but instead found a better explanation here

In your case, you'll need to use your application path instead of "C:\".

link|flag
vote up 1 vote down

Did you add the file as a resource? In that case you can access its (String) content by just using My.Resources.name_of_file. Otherwise, the easiest way to read a text file in VB is to use the following.

Dim content = My.Computer.FileSystem.ReadAllText("filename")
link|flag
vote up -1 vote down

Are you talking about embedding the text file as a resource in the solution - ie compiled in?

For that you need an instance of an assembly class (referecning yours, Assembly has a static member called GetExecutingAssembly) From there you call the GetManifestResourceStream

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.