<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <br>
    <font size="+1"><font face="monospace">Hi Juan, guys,<br>
        <br>
        consider if you wish to add this method. I find it useful.<br>
        <br>
        It is often practical to be able to create uniquely named new
        file, for example<br>
        for logs, or as container for intermediate computations. This
        method provides for it.<br>
        <br>
        It has not external dependencies. <br>
        <br>
        ---- Example ----<br>
        '/tmp' asDirectoryEntry newFileName: 'fooTemp' ext: 'txt'.    
        => '/tmp/fooTemp-1.txt'           <br>
        '/tmp/fooTemp-1.txt' asFileEntry fileContents: 'foo contents'.  
        <br>
        '/tmp' asDirectoryEntry newFileName: 'fooTemp' ext: 'txt'.    
        => /tmp/fooTemp-2.txt <br>
        -----------------<br>
        <br>
        bye<br>
        Nicola<br>
        <br>
        <br>
        <br>
      </font></font>
  </body>
</html>