<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
</head>
<body>
<div name="messageBodySection" style="font-size: 14px; font-family: -apple-system, BlinkMacSystemFont, sans-serif;">
Hi,
<div><br>
</div>
<div>I’m checking to see if there is a way for NCL to check if a directory is present before running a systemfunc for files to process? For example, I’m trying to process a series of MHS satellite granules but some satellites, e.g., metopa, noaa19, etc. have
 different record lengths for various reasons. Some records overlap and some do not.&nbsp;</div>
<div>So I will parallel process the satellite data with a single script with the satellite name as a command-line argument and loop over the years, months, and days available (see code snip below). I would like to check the presence of the directory before
 calling &nbsp;files := systemfunc (&quot;ls &quot;&#43;cmd) so that if the record does not exist, NCL will not crash. I’ve looked at isfilepresent, file exist, but these will cause NCL to crash or return something that I’m not easily checked, i.e., e.g., an empty array of length
 0. I did a search for this FAQ in NCL but there does not seem to be one. Any clever ideas out there?</div>
<div><br>
</div>
<div>Thanks in advance!</div>
<div>/M</div>
<div><br>
</div>
<div>; ******* &nbsp;Code *************</div>
<div>
<div>do y = 0, nyears - 1</div>
<div>&nbsp; &nbsp; print(&quot;Processing year: &quot;&#43;years(y))</div>
<div>&nbsp; &nbsp; do m = 0, nmonths - 1</div>
<div>&nbsp; &nbsp; &nbsp; print(&quot;Processing month: &quot;&#43;months(m))</div>
<div>&nbsp; &nbsp; &nbsp; ndays := days_in_month(toint(years(y)),toint(months(m)))</div>
<div>&nbsp; &nbsp; &nbsp; days := ispan(1,ndays,1)</div>
<div>&nbsp; &nbsp; &nbsp; ;print(days)</div>
<div>&nbsp; &nbsp; &nbsp; do d = 0, ndays - 1</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; print(&quot;Processing day: &quot;&#43;(d&#43;1))</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; day = sprinti(&quot;%0.2i&quot;,days(d))</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; cmd := idir&#43;years(y)&#43;&quot;/&quot;&#43;months(m)&#43;&quot;/&quot;&#43;day&#43;&quot;/NSS*.nc&quot;</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; dayfile = idir&#43;years(y)&#43;&quot;/&quot;&#43;months(m)&#43;&quot;/&quot;&#43;day&#43;&quot;/daymean.nc&quot;</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; ;print(dayfile)</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; ;exit</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; files := systemfunc (&quot;ls &quot;&#43;cmd)</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; ;print(files)</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; nfiles = dimsizes(files)</div>
</div>
<div>snip</div>
</div>
<div name="messageSignatureSection" style="font-size: 14px; font-family: -apple-system, BlinkMacSystemFont, sans-serif;">
<br>
;****************** End of Code snip *************************</div>
</body>
</html>