mirror of
https://github.com/sasjs/core.git
synced 2025-12-10 22:14:35 +00:00
fix: increasing length of filepath/filename in mp_dirlist
Closes https://git.datacontroller.io/dc/dc/issues/103
This commit is contained in:
2
all.sas
2
all.sas
@@ -4861,7 +4861,7 @@ data;run;
|
|||||||
data &out_ds(compress=no
|
data &out_ds(compress=no
|
||||||
keep=file_or_folder filepath filename ext msg directory level
|
keep=file_or_folder filepath filename ext msg directory level
|
||||||
);
|
);
|
||||||
length directory filepath $500 fref fref2 $8 file_or_folder $6 filename $80
|
length directory filepath $2000 fref fref2 $8 file_or_folder $6 filename $255
|
||||||
ext $20 msg $200 foption $16;
|
ext $20 msg $200 foption $16;
|
||||||
if _n_=1 then call missing(of _all_);
|
if _n_=1 then call missing(of _all_);
|
||||||
retain level &level;
|
retain level &level;
|
||||||
|
|||||||
@@ -85,7 +85,7 @@ data;run;
|
|||||||
data &out_ds(compress=no
|
data &out_ds(compress=no
|
||||||
keep=file_or_folder filepath filename ext msg directory level
|
keep=file_or_folder filepath filename ext msg directory level
|
||||||
);
|
);
|
||||||
length directory filepath $500 fref fref2 $8 file_or_folder $6 filename $80
|
length directory filepath $2000 fref fref2 $8 file_or_folder $6 filename $255
|
||||||
ext $20 msg $200 foption $16;
|
ext $20 msg $200 foption $16;
|
||||||
if _n_=1 then call missing(of _all_);
|
if _n_=1 then call missing(of _all_);
|
||||||
retain level &level;
|
retain level &level;
|
||||||
|
|||||||
Reference in New Issue
Block a user