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

chore: updating docs

This commit is contained in:
Allan Bowe
2021-05-27 09:40:38 +03:00
parent 60d23dd618
commit e7d8d8ffb3
4 changed files with 27 additions and 8 deletions

14
all.sas
View File

@@ -12791,8 +12791,8 @@ run;
Usage: Usage:
%put %mfv_existfile(/does/exist.txt); %put %mfv_existfile(/does/exist.txt);
%put %mfv_existfile(/does/not/exist.txt); %put %mfv_existfile(/does/not/exist.txt);
@param filepath The full path to the file on SAS drive (eg /Public/myfile.txt) @param filepath The full path to the file on SAS drive (eg /Public/myfile.txt)
@@ -12800,6 +12800,9 @@ run;
@li mf_abort.sas @li mf_abort.sas
@li mf_getuniquefileref.sas @li mf_getuniquefileref.sas
<h4> Related Macros </h4>
@li mfv_existfolder.sas
@version 3.5 @version 3.5
@author [Allan Bowe](https://www.linkedin.com/in/allanbowe/) @author [Allan Bowe](https://www.linkedin.com/in/allanbowe/)
**/ **/
@@ -12838,8 +12841,8 @@ run;
Usage: Usage:
%put %mfv_existfolder(/does/exist); %put %mfv_existfolder(/does/exist);
%put %mfv_existfolder(/does/not/exist); %put %mfv_existfolder(/does/not/exist);
@param path The path to the folder on SAS drive @param path The path to the folder on SAS drive
@@ -12847,6 +12850,9 @@ run;
@li mf_abort.sas @li mf_abort.sas
@li mf_getuniquefileref.sas @li mf_getuniquefileref.sas
<h4> Related Macros </h4>
@li mfv_existfile.sas
@version 3.5 @version 3.5
@author [Allan Bowe](https://www.linkedin.com/in/allanbowe/) @author [Allan Bowe](https://www.linkedin.com/in/allanbowe/)
**/ **/

View File

@@ -42,6 +42,13 @@
*/ */
/*! \dir Tests
* \brief SASjs Tests
* \details These folders contain the macro tests. They are first compiled
and deployed (sasjs cbd) then executed (sasjs test).
*/
/*! \dir viya /*! \dir viya
* \brief Viya macros * \brief Viya macros
* \details These macros have the following attributes: * \details These macros have the following attributes:

View File

@@ -9,8 +9,8 @@
Usage: Usage:
%put %mfv_existfile(/does/exist.txt); %put %mfv_existfile(/does/exist.txt);
%put %mfv_existfile(/does/not/exist.txt); %put %mfv_existfile(/does/not/exist.txt);
@param filepath The full path to the file on SAS drive (eg /Public/myfile.txt) @param filepath The full path to the file on SAS drive (eg /Public/myfile.txt)
@@ -18,6 +18,9 @@
@li mf_abort.sas @li mf_abort.sas
@li mf_getuniquefileref.sas @li mf_getuniquefileref.sas
<h4> Related Macros </h4>
@li mfv_existfolder.sas
@version 3.5 @version 3.5
@author [Allan Bowe](https://www.linkedin.com/in/allanbowe/) @author [Allan Bowe](https://www.linkedin.com/in/allanbowe/)
**/ **/

View File

@@ -9,8 +9,8 @@
Usage: Usage:
%put %mfv_existfolder(/does/exist); %put %mfv_existfolder(/does/exist);
%put %mfv_existfolder(/does/not/exist); %put %mfv_existfolder(/does/not/exist);
@param path The path to the folder on SAS drive @param path The path to the folder on SAS drive
@@ -18,6 +18,9 @@
@li mf_abort.sas @li mf_abort.sas
@li mf_getuniquefileref.sas @li mf_getuniquefileref.sas
<h4> Related Macros </h4>
@li mfv_existfile.sas
@version 3.5 @version 3.5
@author [Allan Bowe](https://www.linkedin.com/in/allanbowe/) @author [Allan Bowe](https://www.linkedin.com/in/allanbowe/)
**/ **/