Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to Get Last Directory Name
Message
From
19/03/2013 15:13:34
 
 
To
19/03/2013 14:24:53
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP
Network:
Windows XP
Database:
Visual FoxPro
Application:
Desktop
Miscellaneous
Thread ID:
01568796
Message ID:
01568803
Views:
66
>I have some Path as
>
>F:\US\Newyork\123.txt
>F:\Canada\otawa\12234.ps
>F:\India\City\Delhi\Noida\1.ps
>
>I want to extract Newyork,Otawa, and Noida from the above Path. I.e the last Directory in whivh the file is located. Is there any function to do so ?


Use nested JUSTSTEM() and JUSTPATH() functions:

? JUSTSTEM(JUSTPATH("F:\US\Newyork\123.txt"))
? JUSTSTEM(JUSTPATH("F:\Canada\otawa\12234.ps"))
? JUSTSTEM(JUSTPATH("F:\India\City\Delhi\Noida\1.ps"))


You'll need some error checking for dealing with root-level directories, and possibly non-standard filenames.
Previous
Reply
Map
View

Click here to load this message in the networking platform