1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-14 03:50:06 +00:00

fix: addressed issue when creating recursive folers in mv_createfolder.sas

This commit is contained in:
Allan Bowe
2021-05-25 15:33:02 +03:00
parent 7ea9e0f8e9
commit 62db83dcf6
4 changed files with 42 additions and 6 deletions

View File

@@ -96,7 +96,7 @@ options noquotelenmax;
data _null_;
set &libref1..links;
if rel='createChild' then
call symputx('href',quote("&base_uri"!!trim(href)),'l');
call symputx('href',quote(cats("&base_uri",href)),'l');
run;
%end;
%else %if &SYS_PROCHTTP_STATUS_CODE=404 %then %do;
@@ -141,7 +141,7 @@ options noquotelenmax;
data _null_;
set &libref2..links;
if rel='createChild' then
call symputx('href',quote(trim(href)),'l');
call symputx('href',quote(cats("&base_uri",href)),'l');
run;
libname &libref2 clear;
@@ -150,4 +150,4 @@ options noquotelenmax;
filename &fname1 clear;
libname &libref1 clear;
%end;
%mend;
%mend mv_createfolder;