Hello,
I cannot find any function to extract the path of a file. I know it is easy to do, but maybe there is a function to do that...
For example:
FULL PATH: c:/program files/myApp/myfile.exe
I NEED: c:/program files/myApp
Thank you.
How to extract a dir path from file?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
How to extract a dir path from file?
Runtime Revolution Widgets, tutorials, tips & tricks and more!
http://runrevwidgets.com/wiki
http://runrevwidgets.com/wiki
-
- VIP Livecode Opensource Backer
- Posts: 10052
- Joined: Sat Apr 08, 2006 7:05 am
- Contact:
Re: How to extract a dir path from file?
Code: Select all
function FilePath pFile
set the itemdel to "/"
delete last item of pFile
return pFile
end FilePath
Richard Gaskin
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn
Re: How to extract a dir path from file?
I found another solution, but mine is more complex:
I will use your function, thank you!
Code: Select all
put myFile into myDirPath
split myDirPath using "/"
put the last line of the keys of myDirPath into myLastElement
delete variable myDirPath[myLastElement]
combine myDirPath using "/"
Runtime Revolution Widgets, tutorials, tips & tricks and more!
http://runrevwidgets.com/wiki
http://runrevwidgets.com/wiki
Re: How to extract a dir path from file?
Hi,
There is no need to do complicated. If you want to know in which folder your current stack resides, just do this:
Best,
Mark
There is no need to do complicated. If you want to know in which folder your current stack resides, just do this:
Code: Select all
set the itemDel to slash
put item 1 to -2 of the effective filename of this stack into myPath
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode