fr de es it nl pl pt pt_BR mk sq ca ar fa vi ja ru zh zh_TW eo
Home > lang > access
 
Edit  Rename  Undo  Refresh   
Documentation
History  
Access - History
08/29/2008 19:14:08 - gambas
..............................................................................   ..............................................................................
==                                                                               ==                                                                            
PRINT Access("data/img/myImage.png", gb.Write)                                   PRINT Access("data/img/myImage.png", gb.Write)                                
--                                                                               --                                                                            
False ' Even after performing: <b>chmod 777 "PathToMyProject/img/myImage.png"<   False ' Even after performing: chmod 777 "PathToMyProject/img/myImage.png"     
==                                                                               ==                                                                            
}                                                                                }                                                                             
                                                                                                                                                               
..............................................................................   ..............................................................................
08/29/2008 19:13:54 - gambas
..............................................................................   ..............................................................................
==                                                                               ==                                                                            
PRINT Access("data/img/myImage.png", gb.Write)                                   PRINT Access("data/img/myImage.png", gb.Write)                                
--                                                                               --                                                                            
False ' Even after performing: *chmod 777 "PathToMyProject/img/myImage.png"*     False ' Even after performing: <b>chmod 777 "PathToMyProject/img/myImage.png"< 
==                                                                               ==                                                                            
}                                                                                }                                                                             
                                                                                                                                                               
..............................................................................   ..............................................................................
08/29/2008 19:13:42 - gambas
..............................................................................   ..............................................................................
Returns [/lang/true] if the file specified by _Path_ is accessible by the mode   Returns [/lang/true] if the file specified by _Path_ is accessible by the mode
                                                                                                                                                               
If the value of _Mode_ is:                                                       If the value of _Mode_ is:                                                    
* [../../comp/gb/gb].[comp/gb/gb/read], then returns [/lang/true] if the file    * [../../comp/gb/gb/read|gb.Read], then returns [/lang/true] if the file can b 
* [../../comp/gb/gb].[comp/gb/gb/write], then returns [/lang/true] if the file   * [../../comp/gb/gb/write|gb.Write], then returns [/lang/true] if the file can 
* [../../comp/gb/gb].[comp/gb/gb/exec], then returns [/lang/true] if the file    * [../../comp/gb/gb/exec|gb.Exec], then returns [/lang/true] if the file can b 
                                                                                                                                                               
The previous flags can be combined with the [/lang/or] operator.                 The previous flags can be combined with the [/lang/or] operator.              
                                                                                                                                                               
* [../../comp/gb/gb].[comp/gb/gb/read], is the default behavior when the optio   * gb.Read, is the default behavior when the optional argument _Mode_ is not sp 
                                                                                                                                                               
For a directory, the execution flag means that the directory may be browsed.     For a directory, the execution flag means that the directory may be browsed.  
                                                                                                                                                               
{example                                                                         {example                                                                      
PRINT Access("/home/benoit", gb.Write OR gb.Exec)                                PRINT Access("/home/benoit", gb.Write OR gb.Exec)                             
<hr>True                                                                         --                                                                             
                                                                                 True                                                                           
}                                                                                }                                                                             
                                                                                                                                                               
{example                                                                         {example                                                                      
..............................................................................   ..............................................................................
PRINT sPath; "    "; Access(sPath)                                               PRINT sPath; "    "; Access(sPath)                                            
                                                                                                                                                               
END                                                                              END                                                                           
<hr>/root/bin RW False                                                           --                                                                             
                                                                                 /root/bin RW False                                                             
/root/bin R  True                                                                /root/bin R  True                                                             
/root/bin  W False                                                               /root/bin  W False                                                            
/root/bin    True                                                                /root/bin    True                                                             
}                                                                                }                                                                             
                                                                                                                                                               
{warning                                                                         {warning                                                                      
All files under the project directory (including any subdirectories created un   All files under the project directory (including any subdirectories created un 
                                                                                                                                                                
                                                                                 Here is the reason: when making the executable, all project files are put insi 
                                                                                                                                                                
                                                                                 Use temporary files or create a special directory (dotfile) in the current use 
                                                                                                                                                               
==                                                                               ==                                                                            
PRINT Access("data/img/myImage.png", gb.Write)                                   PRINT Access("data/img/myImage.png", gb.Write)                                
<hr>False ' Even after performing: <b>chmod 777 "PathToMyProject/img/myImage.p   --                                                                             
                                                                                 False ' Even after performing: *chmod 777 "PathToMyProject/img/myImage.png"*   
==                                                                               ==                                                                            
}                                                                                }                                                                             
                                                                                                                                                               
..............................................................................   ..............................................................................
08/17/2008 07:17:19 - l.wei
..............................................................................   ..............................................................................
}                                                                                }                                                                             
                                                                                                                                                               
{warning                                                                         {warning                                                                      
All files under the project directory (including any subdirectories created un   All files under the project directory (including any subdirectories created un 
                                                                                                                                                               
==                                                                               ==                                                                            
PRINT Access("data/img/myImage.png", gb.Write)                                   PRINT Access("data/img/myImage.png", gb.Write)                                
..............................................................................   ..............................................................................
01/29/2008 09:32:21 - gambas
..............................................................................   ..............................................................................
                                                                                                                                                               
==                                                                               ==                                                                            
PRINT Access("data/img/myImage.png", gb.Write)                                   PRINT Access("data/img/myImage.png", gb.Write)                                
<hr>False                                                                        <hr>False ' Even after performing: <b>chmod 777 "PathToMyProject/img/myImage.p 
<hr>Even after performing: <b>chmod 777 "PathToMyProject/img/myImage.png"</b>                                                                                  
==                                                                               ==                                                                            
}                                                                                }                                                                             
                                                                                                                                                               
..............................................................................   ..............................................................................
01/29/2008 09:32:03 - gambas
..............................................................................   ..............................................................................
                                                                                                                                                               
{warning                                                                         {warning                                                                      
All files under the project directory (including any subdirectories created un   All files under the project directory (including any subdirectories created un
}                                                                                                                                                               
{example                                                                         ==                                                                             
PRINT Access("data/img/myImage.png", gb.Write)                                   PRINT Access("data/img/myImage.png", gb.Write)                                
<hr>False                                                                        <hr>False                                                                     
<hr>Even after performing: <b>chmod 777 "PathToMyProject/img/myImage.png"</b>    <hr>Even after performing: <b>chmod 777 "PathToMyProject/img/myImage.png"</b> 
                                                                                 ==                                                                             
}                                                                                }                                                                             
                                                                                                                                                               
                                                                                                                                                               
..............................................................................   ..............................................................................
04/09/2007 23:43:39 - l.carlier
..............................................................................   ..............................................................................
                                                                                                                                                               
The previous flags can be combined with the [/lang/or] operator.                 The previous flags can be combined with the [/lang/or] operator.              
                                                                                                                                                               
* [../../comp/gb/gb].[comp/gb/gb/read], is the default behavior when the optio   * [../../comp/gb/gb].[comp/gb/gb/read], is the default behavior when the optio 
                                                                                                                                                               
For a directory, the execution flag means that the directory may be browsed.     For a directory, the execution flag means that the directory may be browsed.  
                                                                                                                                                               
..............................................................................   ..............................................................................
04/20/2006 06:42:59 - hj.herbert
{syntax                                                                          {syntax                                                                       
_Accessible_ *= Access (* _Path_ [ *,* _Mode_ ] *) AS Boolean*                   _Accessible_ *= Access (* _Path_ *AS String* [ *,* _Mode_ *AS Integer* ] *) AS 
}                                                                                }                                                                             
                                                                                                                                                               
Returns [/lang/true] if the file specified by _Path_ is accessible by the mode   Returns [/lang/true] if the file specified by _Path_ is accessible by the mode
..............................................................................   ..............................................................................
04/19/2006 18:54:54 - hj.herbert
..............................................................................   ..............................................................................
Returns [/lang/true] if the file specified by _Path_ is accessible by the mode   Returns [/lang/true] if the file specified by _Path_ is accessible by the mode
                                                                                                                                                               
If the value of _Mode_ is:                                                       If the value of _Mode_ is:                                                    
* [../../comp/gb/gb].[comp/gb/gb/read], then returns if the file can be read.    * [../../comp/gb/gb].[comp/gb/gb/read], then returns [/lang/true] if the file  
* [../../comp/gb/gb].[comp/gb/gb/write], then returns if the file can be writt   * [../../comp/gb/gb].[comp/gb/gb/write], then returns [/lang/true] if the file 
* [../../comp/gb/gb].[comp/gb/gb/exec], then returns if the file can be execut   * [../../comp/gb/gb].[comp/gb/gb/exec], then returns [/lang/true] if the file  
                                                                                                                                                               
The previous flags can be combined with the [/lang/or] operator.                 The previous flags can be combined with the [/lang/or] operator.              
                                                                                                                                                               
..............................................................................   ..............................................................................
04/19/2006 18:53:27 - hj.herbert
{syntax                                                                          {syntax                                                                       
_Accessible_ *= Access (* _Path_ [ *,* _Mode_ ] *)* AS Boolean                   _Accessible_ *= Access (* _Path_ [ *,* _Mode_ ] *) AS Boolean*                 
}                                                                                }                                                                             
                                                                                                                                                               
Returns [/lang/true] if the file specified by _Path_ is accessible by the mode   Returns [/lang/true] if the file specified by _Path_ is accessible by the mode
                                                                                                                                                               
If the value of _Mode_ is:                                                       If the value of _Mode_ is:                                                    
* [../../comp/gb/gb].[comp/gb/gb/read], then returns if the file can be read.    * [../../comp/gb/gb].[comp/gb/gb/read], then returns if the file can be read. 
* [../../comp/gb/gb].[comp/gb/gb/write] then returns if the file can be writte   * [../../comp/gb/gb].[comp/gb/gb/write], then returns if the file can be writt 
* [../../comp/gb/gb].[comp/gb/gb/exec], then returns if the file can be execut   * [../../comp/gb/gb].[comp/gb/gb/exec], then returns if the file can be execut
                                                                                                                                                               
The previous flags can be combined with the [/lang/or] operator.                 The previous flags can be combined with the [/lang/or] operator.              
..............................................................................   ..............................................................................
PRINT sPath; "    "; Access(sPath)                                               PRINT sPath; "    "; Access(sPath)                                            
                                                                                                                                                               
END                                                                              END                                                                           
                                                                                 <hr>/root/bin RW False                                                         
<hr>                                                                                                                                                           
/root/bin RW False                                                                                                                                             
/root/bin R  True                                                                /root/bin R  True                                                             
/root/bin  W False                                                               /root/bin  W False                                                            
/root/bin    True                                                                /root/bin    True                                                             
..............................................................................   ..............................................................................
04/19/2006 18:52:11 - hj.herbert
{syntax                                                                          {syntax                                                                       
_Accessible_ *= Access (* _Path_ [ *,* _Mode_ ] *)*                              _Accessible_ *= Access (* _Path_ [ *,* _Mode_ ] *)* AS Boolean                 
}                                                                                }                                                                             
                                                                                                                                                               
Returns if the file specified by _Path_ is accessible.                           Returns [/lang/true] if the file specified by _Path_ is accessible by the mode 
                                                                                                                                                               
If the value of _Mode_ is:                                                       If the value of _Mode_ is:                                                    
* [../../comp/gb/gb].[comp/gb/gb/read], then returns if the file can be read.    * [../../comp/gb/gb].[comp/gb/gb/read], then returns if the file can be read. 
..............................................................................   ..............................................................................
<hr>True                                                                         <hr>True                                                                      
}                                                                                }                                                                             
{example                                                                                                                                                       
                                                                                 {example                                                                       
PRINT Access("/root", gb.Write)                                                  PUBLIC SUB Button1_Click()                                                     
<hr>False                                                                        DIM sPath AS String                                                            
                                                                                                                                                                
                                                                                 sPath = "/root/bin"                                                            
                                                                                 PRINT sPath; " RW "; Access(sPath, gb.Read OR gb.write)                        
                                                                                 PRINT sPath; " R  "; Access(sPath, gb.Read)                                    
                                                                                 PRINT sPath; "  W "; Access(sPath, gb.write)                                   
                                                                                 PRINT sPath; "    "; Access(sPath)                                             
                                                                                                                                                                
                                                                                 END                                                                            
                                                                                                                                                                
                                                                                 <hr>                                                                           
                                                                                 /root/bin RW False                                                             
                                                                                 /root/bin R  True                                                              
                                                                                 /root/bin  W False                                                             
                                                                                 /root/bin    True                                                              
}                                                                                }                                                                             
                                                                                                                                                               
{warning                                                                         {warning                                                                      
..............................................................................   ..............................................................................
03/24/2006 02:52:19 - c.jack
..............................................................................   ..............................................................................
All files under the project directory (including any subdirectories created un   All files under the project directory (including any subdirectories created un
}                                                                                }                                                                             
{example                                                                         {example                                                                      
PRINT Access("img/myImage.png", gb.Write)                                        PRINT Access("data/img/myImage.png", gb.Write)                                 
<hr>False                                                                        <hr>False                                                                     
<hr>Even after performing: <b>chmod 777 "PathToMyProject/img/myImage.png"</b>    <hr>Even after performing: <b>chmod 777 "PathToMyProject/img/myImage.png"</b> 
}                                                                                }                                                                             
..............................................................................   ..............................................................................
03/24/2006 02:51:38 - c.jack
..............................................................................   ..............................................................................
{example                                                                         {example                                                                      
PRINT Access("img/myImage.png", gb.Write)                                        PRINT Access("img/myImage.png", gb.Write)                                     
<hr>False                                                                        <hr>False                                                                     
<hr>Even after performing <i>chmod 777 "PathToMyProject/img/myImage.png"</i>     <hr>Even after performing: <b>chmod 777 "PathToMyProject/img/myImage.png"</b>  
}                                                                                }                                                                             
                                                                                                                                                               
                                                                                                                                                               
..............................................................................   ..............................................................................
03/24/2006 02:50:39 - c.jack
..............................................................................   ..............................................................................
{example                                                                         {example                                                                      
PRINT Access("img/myImage.png", gb.Write)                                        PRINT Access("img/myImage.png", gb.Write)                                     
<hr>False                                                                        <hr>False                                                                     
<hr>*** Even after performing chmod 777 "PathToMyProject/img/myImage.png" ***    <hr>Even after performing <i>chmod 777 "PathToMyProject/img/myImage.png"</i>   
}                                                                                }                                                                             
                                                                                                                                                               
                                                                                                                                                               
..............................................................................   ..............................................................................
03/24/2006 02:49:49 - c.jack
..............................................................................   ..............................................................................
{example                                                                         {example                                                                      
PRINT Access("img/myImage.png", gb.Write)                                        PRINT Access("img/myImage.png", gb.Write)                                     
<hr>False                                                                        <hr>False                                                                     
                                                                                 <hr>*** Even after performing chmod 777 "PathToMyProject/img/myImage.png" ***  
}                                                                                }                                                                             
Even after /chmod 777 "PathToMyProject\/img\/myImage.png"/                                                                                                      
                                                                                                                                                               
{seealso                                                                         {seealso                                                                      
[cat/file]                                                                       [cat/file]                                                                    
..............................................................................   ..............................................................................
03/24/2006 02:47:19 - c.jack
..............................................................................   ..............................................................................
PRINT Access("img/myImage.png", gb.Write)                                        PRINT Access("img/myImage.png", gb.Write)                                     
<hr>False                                                                        <hr>False                                                                     
}                                                                                }                                                                             
/Even after $>chmod 777 PathToMyProject\/img\/myImage.png)/                      Even after /chmod 777 "PathToMyProject\/img\/myImage.png"/                     
                                                                                                                                                               
{seealso                                                                         {seealso                                                                      
[cat/file]                                                                       [cat/file]                                                                    
..............................................................................   ..............................................................................
03/24/2006 02:45:48 - c.jack
..............................................................................   ..............................................................................
}                                                                                }                                                                             
{example                                                                         {example                                                                      
PRINT Access("img/myImage.png", gb.Write)                                        PRINT Access("img/myImage.png", gb.Write)                                     
<hr>False /(even after $>chmod 777 PathToMyProject\/img\/myImage.png)/           <hr>False                                                                      
}                                                                                }                                                                             
                                                                                 /Even after $>chmod 777 PathToMyProject\/img\/myImage.png)/                    
                                                                                                                                                               
{seealso                                                                         {seealso                                                                      
[cat/file]                                                                       [cat/file]                                                                    
..............................................................................   ..............................................................................
03/24/2006 02:44:59 - c.jack
..............................................................................   ..............................................................................
}                                                                                }                                                                             
{example                                                                         {example                                                                      
PRINT Access("img/myImage.png", gb.Write)                                        PRINT Access("img/myImage.png", gb.Write)                                     
<hr>False                                                                        <hr>False /(even after $>chmod 777 PathToMyProject\/img\/myImage.png)/         
}                                                                                }                                                                             
                                                                                                                                                               
{seealso                                                                         {seealso                                                                      
..............................................................................   ..............................................................................
03/24/2006 02:41:06 - c.jack
..............................................................................   ..............................................................................
PRINT Access("/root", gb.Write)                                                  PRINT Access("/root", gb.Write)                                               
<hr>False                                                                        <hr>False                                                                     
}                                                                                }                                                                             
{example                                                                                                                                                       
PRINT Access("img/myImage.png", gb.Write)                                                                                                                      
<hr>False                                                                                                                                                      
}                                                                                                                                                              
                                                                                                                                                               
{warning                                                                         {warning                                                                      
All files under the project directory (including any subdirectories created un   All files under the project directory (including any subdirectories created un
}                                                                                }                                                                             
                                                                                 {example                                                                       
                                                                                 PRINT Access("img/myImage.png", gb.Write)                                      
                                                                                 <hr>False                                                                      
                                                                                 }                                                                              
                                                                                                                                                               
{seealso                                                                         {seealso                                                                      
[cat/file]                                                                       [cat/file]                                                                    
..............................................................................   ..............................................................................
03/24/2006 02:40:27 - c.jack
..............................................................................   ..............................................................................
PRINT Access("/root", gb.Write)                                                  PRINT Access("/root", gb.Write)                                               
<hr>False                                                                        <hr>False                                                                     
}                                                                                }                                                                             
                                                                                 {example                                                                       
                                                                                 PRINT Access("img/myImage.png", gb.Write)                                      
                                                                                 <hr>False                                                                      
                                                                                 }                                                                              
                                                                                                                                                               
{warning                                                                         {warning                                                                      
All files under the project directory (including any subdirectories created un   All files under the project directory (including any subdirectories created un
..............................................................................   ..............................................................................
03/24/2006 02:38:33 - c.jack
..............................................................................   ..............................................................................
}                                                                                }                                                                             
                                                                                                                                                               
{warning                                                                         {warning                                                                      
All files under the project directory (including any subdirectories created un   All files under the project directory (including any subdirectories created un 
}                                                                                }                                                                             
                                                                                                                                                               
{seealso                                                                         {seealso                                                                      
..............................................................................   ..............................................................................
03/24/2006 02:37:42 - c.jack
..............................................................................   ..............................................................................
}                                                                                }                                                                             
                                                                                                                                                               
{warning                                                                         {warning                                                                      
All files under the project directory (including any subdirectories created un   All files under the project directory (including any subdirectories created un 
}                                                                                }                                                                             
                                                                                                                                                               
{seealso                                                                         {seealso                                                                      
..............................................................................   ..............................................................................
03/24/2006 02:36:22 - c.jack
..............................................................................   ..............................................................................
}                                                                                }                                                                             
                                                                                                                                                               
{warning                                                                         {warning                                                                      
All files under the project directory (including any subdirectories created un   All files under the project directory (including any subdirectories created un 
}                                                                                }                                                                             
                                                                                                                                                               
{seealso                                                                         {seealso                                                                      
..............................................................................   ..............................................................................
03/24/2006 02:36:07 - c.jack
..............................................................................   ..............................................................................
}                                                                                }                                                                             
                                                                                                                                                               
{warning                                                                         {warning                                                                      
All files under the project directory (including any subdirectories created un   All files under the project directory (including any subdirectories created un 
}                                                                                }                                                                             
                                                                                                                                                               
{seealso                                                                         {seealso                                                                      
..............................................................................   ..............................................................................
03/24/2006 02:35:42 - c.jack
..............................................................................   ..............................................................................
}                                                                                }                                                                             
                                                                                                                                                               
{warning                                                                         {warning                                                                      
All files under the project directory (including any subdirectories created un   All files under the project directory (including any subdirectories created un 
}                                                                                }                                                                             
                                                                                                                                                               
{seealso                                                                         {seealso                                                                      
..............................................................................   ..............................................................................
03/24/2006 02:33:46 - c.jack
..............................................................................   ..............................................................................
<hr>False                                                                        <hr>False                                                                     
}                                                                                }                                                                             
                                                                                                                                                               
                                                                                 {warning                                                                       
                                                                                 All files under the project directory (including any subdirectories created un 
                                                                                 }                                                                              
                                                                                                                                                                
{seealso                                                                         {seealso                                                                      
[cat/file]                                                                       [cat/file]                                                                    
}                                                                                }                                                                             
..............................................................................   ..............................................................................
03/24/2006 02:29:50 - c.jack
..............................................................................   ..............................................................................
                                                                                                                                                               
The previous flags can be combined with the [/lang/or] operator.                 The previous flags can be combined with the [/lang/or] operator.              
                                                                                                                                                               
* [../../comp/gb/gb].[comp/gb/gb/read], is the default behavior when the optio   * [../../comp/gb/gb].[comp/gb/gb/read], is the default behavior when the optio 
_Mode_ is not specified.                                                                                                                                       
                                                                                                                                                               
For a directory, the execution flag means that the directory may be browsed.     For a directory, the execution flag means that the directory may be browsed.  
                                                                                                                                                               
..............................................................................   ..............................................................................
03/24/2006 02:29:38 - c.jack
..............................................................................   ..............................................................................
                                                                                                                                                               
The previous flags can be combined with the [/lang/or] operator.                 The previous flags can be combined with the [/lang/or] operator.              
                                                                                                                                                               
* [../../comp/gb/gb].[comp/gb/gb/read], is the default behavior when the optio   * [../../comp/gb/gb].[comp/gb/gb/read], is the default behavior when the optio 
_Mode_ is not specified.                                                         _Mode_ is not specified.                                                      
                                                                                                                                                               
For a directory, the execution flag means that the directory may be browsed.     For a directory, the execution flag means that the directory may be browsed.  
..............................................................................   ..............................................................................
03/24/2006 02:29:24 - c.jack
..............................................................................   ..............................................................................
                                                                                                                                                               
The previous flags can be combined with the [/lang/or] operator.                 The previous flags can be combined with the [/lang/or] operator.              
                                                                                                                                                               
* [../../comp/gb/gb].[comp/gb/gb/read], is the default behavior is the optiona   * [../../comp/gb/gb].[comp/gb/gb/read], is the default behavior when the optio 
_Mode_ is not specified.                                                         _Mode_ is not specified.                                                      
                                                                                                                                                               
For a directory, the execution flag means that the directory may be browsed.     For a directory, the execution flag means that the directory may be browsed.  
..............................................................................   ..............................................................................
03/24/2006 02:28:59 - c.jack
..............................................................................   ..............................................................................
Returns if the file specified by _Path_ is accessible.                           Returns if the file specified by _Path_ is accessible.                        
                                                                                                                                                               
If the value of _Mode_ is:                                                       If the value of _Mode_ is:                                                    
* [../../comp/gb/gb].[comp/gb/gb/read], then returns if the file can be read.    * [../../comp/gb/gb].[comp/gb/gb/read], then returns if the file can be read.  
* [../../comp/gb/gb].[comp/gb/gb/write] then returns if the file can be writte   * [../../comp/gb/gb].[comp/gb/gb/write] then returns if the file can be writte
* [../../comp/gb/gb].[comp/gb/gb/exec], then returns if the file can be execut   * [../../comp/gb/gb].[comp/gb/gb/exec], then returns if the file can be execut
                                                                                                                                                               
The previous flags can be combined with the [/lang/or] operator.                 The previous flags can be combined with the [/lang/or] operator.              
                                                                                                                                                               
                                                                                 * [../../comp/gb/gb].[comp/gb/gb/read], is the default behavior is the optiona 
                                                                                 _Mode_ is not specified.                                                       
                                                                                                                                                                
For a directory, the execution flag means that the directory may be browsed.     For a directory, the execution flag means that the directory may be browsed.  
                                                                                                                                                               
{example                                                                         {example                                                                      
..............................................................................   ..............................................................................
{seealso                                                                         {seealso                                                                      
[cat/file]                                                                       [cat/file]                                                                    
}                                                                                }                                                                             
                                                                                                                                                               
{info                                                                                                                                                          
What are the semantics if the _Mode_ argument, indicated as /optional/, is omi                                                                                 
}                                                                                                                                                              
                                                                                                                                                               
03/20/2006 06:18:11 - c.jack
..............................................................................   ..............................................................................
}                                                                                }                                                                             
                                                                                                                                                               
{info                                                                            {info                                                                         
_                                                                                                                                                              
What are the semantics if the _Mode_ argument, indicated as /optional/, is omi   What are the semantics if the _Mode_ argument, indicated as /optional/, is omi
}                                                                                }                                                                             
                                                                                                                                                               
03/20/2006 06:17:30 - c.jack
..............................................................................   ..............................................................................
}                                                                                }                                                                             
                                                                                                                                                               
{info                                                                            {info                                                                         
                                                                                 _                                                                              
What are the semantics if the _Mode_ argument, indicated as /optional/, is omi   What are the semantics if the _Mode_ argument, indicated as /optional/, is omi
}                                                                                }                                                                             
                                                                                                                                                               
03/20/2006 06:17:17 - c.jack
..............................................................................   ..............................................................................
{info                                                                            {info                                                                         
What are the semantics if the _Mode_ argument, indicated as /optional/, is omi                                                                                 
}                                                                                What are the semantics if the _Mode_ argument, indicated as /optional/, is omi
                                                                                 }                                                                              
                                                                                                                                                               
03/20/2006 06:16:32 - c.jack
..............................................................................   ..............................................................................
[cat/file]                                                                       [cat/file]                                                                    
}                                                                                }                                                                             
                                                                                                                                                               
{box                                                                             {info                                                                          
What are the semantics if the _Mode_ argument, indicated as /optional/, is omi   What are the semantics if the _Mode_ argument, indicated as /optional/, is omi
}                                                                                }                                                                             
                                                                                                                                                               
03/20/2006 06:12:30 - c.jack
..............................................................................   ..............................................................................
[cat/file]                                                                       [cat/file]                                                                    
}                                                                                }                                                                             
                                                                                                                                                               
{notice                                                                          {box                                                                           
What are the semantics if the _Mode_ argument, indicated as /optional/, is omi   What are the semantics if the _Mode_ argument, indicated as /optional/, is omi
}                                                                                }                                                                             
                                                                                                                                                               
03/20/2006 06:08:03 - c.jack
..............................................................................   ..............................................................................
[cat/file]                                                                       [cat/file]                                                                    
}                                                                                }                                                                             
                                                                                                                                                               
{note                                                                            {notice                                                                        
What are the semantics if the _Mode_ argument, indicated as /optional/, is omi   What are the semantics if the _Mode_ argument, indicated as /optional/, is omi
}                                                                                }                                                                             
                                                                                                                                                               
03/20/2006 06:07:25 - c.jack
..............................................................................   ..............................................................................
                                                                                                                                                               
The previous flags can be combined with the [/lang/or] operator.                 The previous flags can be combined with the [/lang/or] operator.              
                                                                                                                                                               
For a directory, the execution flag means that the directory can be browse.      For a directory, the execution flag means that the directory may be browsed.   
                                                                                                                                                               
{example                                                                         {example                                                                      
PRINT Access("/home/benoit", gb.Write OR gb.Exec)                                PRINT Access("/home/benoit", gb.Write OR gb.Exec)                             
..............................................................................   ..............................................................................
[cat/file]                                                                       [cat/file]                                                                    
}                                                                                }                                                                             
                                                                                                                                                               
{todo                                                                            {note                                                                          
What are the semantics if the _Mode_ argument, indicated as optional, is omitt   What are the semantics if the _Mode_ argument, indicated as /optional/, is omi 
}                                                                                }                                                                             
                                                                                                                                                               
03/20/2006 06:05:11 - c.jack
Creation