I am beginner in livecode, and I am looking for the code of the current working directory. eg: If varible holder the current working path, If i change the path then the variable automatically changed to new path is it possible
How to get the current working directory
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
How to get the current working directory
Hi,
I am beginner in livecode, and I am looking for the code of the current working directory. eg: If varible holder the current working path, If i change the path then the variable automatically changed to new path is it possible
I am beginner in livecode, and I am looking for the code of the current working directory. eg: If varible holder the current working path, If i change the path then the variable automatically changed to new path is it possible
--
Thanks
Shalu S
Thanks
Shalu S
-
FourthWorld
- VIP Livecode Opensource Backer

- Posts: 10066
- Joined: Sat Apr 08, 2006 7:05 am
- Contact:
Re: How to get the current working directory
In LiveCode it's called "the directory". LiveCode is very difficult. 
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 get the current working directory
Code: Select all
on preOpenStack
set itemDel to "/"
set the defaultfolder to item 1 to -2 of (the effective fileName of this stack)
end preOpenStack