1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-15 04:20:05 +00:00

feat: mfv_getpathuri macro to get the uri of a file or folder

Also refactoring mv_createfolder.sas
This commit is contained in:
allan
2025-05-18 18:48:18 +01:00
parent 51042cbd47
commit 667198e5c0
9 changed files with 229 additions and 47 deletions

View File

@@ -431,10 +431,6 @@
%else %if &ext=movie %then %do;%str(video/x-sgi-movie)%end;
%else %if &ext=ice %then %do;%str(x-conference/x-cooltalk)%end;
%else %if "&ext"="in" %then %do;%str(text/plain)%end;
%else %do;
%put %str(WARN)ING: extension &ext not found!;
%put %str(WARN)ING- Returning text/plain.;
%str(text/plain)
%end;
%else %do;%str(application/octet-stream)%end;
%mend mf_mimetype;