Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

Hi Folks...

 

Is it possible to use a relative Path to open a File with the System.IO.File ?

 

In ASP.Net or similar Langs you can use .open("../../file.txt").

 

Do I have to use the absolut path to open a file in VB.Net, I can't even

remeber how it was in VB6. Anyway if someone has a answer to my question or a better sugestion how to handle files let me know.

Posted

Well you can use one of:

 

System.Windows.Forms.Application.ExecutablePath

System.Windows.Forms.Application.StartupPath

System.AppDomain.CurrentDomain.BaseDirectory()

System.GetEntryAssembly().Location

 

to get the application path and in asp.net there is server.mappath(). Therefore just use Application.StartupPath & "relative path" for example.

 

:)

Please check the Knowledge Base before you post.

"Computers are useless. They can only give you answers." - Pablo Picasso

The Code Net

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...