Ignore:
Timestamp:
07/06/06 16:32:02 (18 years ago)
Author:
pinsard
Message:

improvements of Utilities/*.pro header

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Utilities/isafile.pro

    • Property svn:eol-style deleted
    • Property svn:executable deleted
    r121 r128  
    33;------------------------------------------------------------ 
    44;+ 
    5 ; @file_comments same as find.pro except that as long as the file is 'NOT FOUND', 
    6 ;          isafile calls dialog_pickfile, to ask the user to select a file. 
     5; @file_comments 
     6; same as find.pro except that as long as the file is 'NOT FOUND', 
     7; isafile calls dialog_pickfile, to ask the user to select a file. 
    78; 
    89; @categories io 
    910; 
    10 ;  
    1111; @param filein {in}{optional} a proposed name. If neither filein 
    1212;        input parameter of filename keyword are defined, 
     
    2727; 
    2828; @keyword RECURSIVE performs recursive searching of directory hierarchies. 
    29 ;        In a recursive search, find looks recursively for any and all  
     29;        In a recursive search, find looks recursively for any and all 
    3030;        subdirectories in the file hierarchy rooted at the IODIRECTORY 
    31 ;        argument.  
     31;        argument. 
    3232; 
    3333; @keyword _EXTRA used to pass your keywords 
     
    3737; @returns the filename with its path 
    3838; 
    39 ; @examples  
     39; @examples 
    4040; 
    41 ;  IDL> print, isafile('/Users/sebastie/SAXO_RD/Commons/cm_4mesh.pro') 
     41; IDL> print, isafile('/Users/sebastie/SAXO_RD/Commons/cm_4mesh.pro') 
    4242;  /Users/sebastie/SAXO_RD/Commons/cm_4mesh.pro 
    43 ;  IDL> print, isafile('cm_4mesh.pro', iodir = '/Users/sebastie/SAXO_RD/Commons') 
     43; IDL> print, isafile('cm_4mesh.pro', iodir = '/Users/sebastie/SAXO_RD/Commons') 
    4444;  /Users/sebastie/SAXO_RD/Commons/cm_4mesh.pro 
    45 ;  IDL> print, isafile('cm_4mesh.pro', iodir = !path) 
     45; IDL> print, isafile('cm_4mesh.pro', iodir = !path) 
    4646;  /Users/sebastie/SAXO_RD/Commons/cm_4mesh.pro 
    47 ;  IDL> print, isafile('cm_4mesh.pro', iodir = '/Users/sebastie/SAXO_RD', /recursive) 
     47; IDL> print, isafile('cm_4mesh.pro', iodir = '/Users/sebastie/SAXO_RD', /recursive) 
    4848;  /Users/sebastie/SAXO_RD/Commons/cm_4mesh.pro 
    49 ;  IDL> print, isafile('cm_4mesh.pro', iodir = getenv('HOME'), /recursive) 
     49; IDL> print, isafile('cm_4mesh.pro', iodir = getenv('HOME'), /recursive) 
    5050;  /Users/sebastie/SAXO_RD/Commons/cm_4mesh.pro 
    51 ;  IDL> print, isafile('fake_file.pro') 
     51; IDL> print, isafile('fake_file.pro') 
    5252; 
    5353; @history Sebastien Masson (smasson\@lodyc.jussieu.fr) 
Note: See TracChangeset for help on using the changeset viewer.