I am working on a windows server and because the work is collaborative, do not wish to use mapped network drives. Thus, I have been using absolute network locations. These pose no problems with commands such as "use" and "save," but I am having trouble with the system directories. I'll show the code but I have to change the names of the directories:
. local root "\\server\folder"
. cd `root'
. adopath + `root'\ado
. use data\datname.dta, clear
The command adopath results in the following adopath entry without the two slashes at the front, but rather, only a single slash:
[7] "\server\folder\ado"
The use command and the cd command work fine, but Stata cannot find my ado files. Any help is appreciated.
TIA,
Kyle
PS I have also tried
. adopath + "`root'\ado"
which produces the same result.
. local root "\\server\folder"
. cd `root'
. adopath + `root'\ado
. use data\datname.dta, clear
The command adopath results in the following adopath entry without the two slashes at the front, but rather, only a single slash:
[7] "\server\folder\ado"
The use command and the cd command work fine, but Stata cannot find my ado files. Any help is appreciated.
TIA,
Kyle
PS I have also tried
. adopath + "`root'\ado"
which produces the same result.
Comment