Back to... Zip-Ada

Source file : flexible_temp_files.ads



   1  --  Portable package for getting temporary file names but the behaviour
   2  --  of normal files which can be created, closed, re-read, etc. and are
   3  --  not automatically deleted by the Ada run-time. Downside: the program
   4  --  needs to delete the files itself.
   5  
   6  with Ada.Text_IO;
   7  
   8  package Flexible_temp_files is
   9  
  10    procedure Initialize;
  11    procedure Finalize;
  12  
  13    --  Give a suitable temporary file name radix (no extension),
  14    --  eventually with a path.
  15    function Radix return String;
  16  
  17  private
  18    radix_temp_file : Ada.Text_IO.File_Type;
  19  end Flexible_temp_files;

Web view of Ada source code generated by GNATHTML, project: ALI_Parse version 1.0.
Zip-Ada: Ada library for zip archive files (.zip). Ada programming.
Some news about Zip-Ada and other Ada projects on Gautier's blog.