<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: create a new library in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/create-a-new-library/m-p/927643#M365034</link>
    <description>&lt;P&gt;With system option&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lesysoptsref/n1pihdnfpj4b32n1t62lx0zdsmdn.htm" target="_blank" rel="noopener"&gt;DLCREATEDIR&lt;/A&gt;&amp;nbsp;set, the directory will be created when the LIBNAME statement is issued. You must, of course, have the necessary permissions in the filesystem.&lt;/P&gt;</description>
    <pubDate>Thu, 09 May 2024 08:44:23 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2024-05-09T08:44:23Z</dc:date>
    <item>
      <title>create a new library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/create-a-new-library/m-p/927640#M365031</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I would like to create a new library called PanelOsh .&lt;/P&gt;
&lt;P&gt;The following code is not creating the library folder&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname AAA  '/usr/local/SAS/SASUsers/LabRet/Credit_Scoring_Users/PanelOsh';
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;What is the way to create the library folder?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I click right click on library then I dont see option to create a new folder (The library name)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ronein_0-1715243691901.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96366i90616521EDEE994C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ronein_0-1715243691901.png" alt="Ronein_0-1715243691901.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 08:40:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/create-a-new-library/m-p/927640#M365031</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2024-05-09T08:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: create a new library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/create-a-new-library/m-p/927642#M365033</link>
      <description>&lt;P&gt;I found the solution!~&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options dlcreatedir;
libname PanelOsh "/usr/local/SAS/SASUsers/LabRet/Credit_Scoring_Users/";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Is it necessary to write&amp;nbsp;&lt;CODE class=" language-sas"&gt;options dlcreatedir??&amp;nbsp;Why?&amp;gt;&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 08:42:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/create-a-new-library/m-p/927642#M365033</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2024-05-09T08:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: create a new library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/create-a-new-library/m-p/927643#M365034</link>
      <description>&lt;P&gt;With system option&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lesysoptsref/n1pihdnfpj4b32n1t62lx0zdsmdn.htm" target="_blank" rel="noopener"&gt;DLCREATEDIR&lt;/A&gt;&amp;nbsp;set, the directory will be created when the LIBNAME statement is issued. You must, of course, have the necessary permissions in the filesystem.&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 08:44:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/create-a-new-library/m-p/927643#M365034</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-05-09T08:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: create a new library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/create-a-new-library/m-p/927644#M365035</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I found the solution!~&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options dlcreatedir;
libname PanelOsh "/usr/local/SAS/SASUsers/LabRet/Credit_Scoring_Users/";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Is it necessary to write&amp;nbsp;&lt;CODE class=" language-sas"&gt;options dlcreatedir??&amp;nbsp;Why?&amp;gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Maxim 1: Read the Documentation.&lt;/P&gt;
&lt;P&gt;On Windows and UNIX, the default is NODLCREATEDIR.&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 08:46:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/create-a-new-library/m-p/927644#M365035</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-05-09T08:46:16Z</dc:date>
    </item>
  </channel>
</rss>

