Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / .NET Framework / .NET SDK / July 2004

Tip: Looking for answers? Try searching our database.

How to get absoulte path from relative path?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Ilya Evseev - 03 Jul 2004 02:46 GMT
   Hi!
Consider string containing relative path,
may be with "\..\"and "\.\", with or without drive name, etc.

I looking for API routine that converts that arbitrary filepath to full
path,
based on current drive, current directories on all drives
and (bingo!) on any other filepath that is used as starting point.

Example: starting point = "d:data\configs\conf1.txt",
filepath = "..\images\img1.gif",
result = "d:\current-directory\data\images\img1.gif"

It should be something like FExpand function from Borland Pascal RTL
and fnmerge() from POSIX API.

Thanx in advance,
Ilya
Michael Giagnocavo [MVP] - 04 Jul 2004 21:30 GMT
Hi there,

System.IO.Path.GetFullPath(System.IO.Path.Combine(@"d:\data\configs\conf1.txt",
@"..\images\img1.gif"));
gives us:
"d:\\data\\configs\\images\\img1.gif"

Look at the Path class, since with a few calls you can get what you're
looking for.

-mike
MVP

>    Hi!
> Consider string containing relative path,
[quoted text clipped - 14 lines]
> Thanx in advance,
> Ilya

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.