Fred Drake | 3a0351c | 1998-04-04 07:23:21 +0000 | [diff] [blame] | 1 | \section{Built-in Module \module{macfs}} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 2 | \label{module-macfs} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 3 | \bimodindex{macfs} |
| 4 | |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 5 | |
Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 6 | This module provides access to Macintosh FSSpec handling, the Alias |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 7 | Manager, \program{finder} aliases and the Standard File package. |
| 8 | \index{Macintosh Alias Manager} |
| 9 | \index{Alias Manager, Macintosh} |
| 10 | \index{Standard File} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 11 | |
| 12 | Whenever a function or method expects a \var{file} argument, this |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 13 | argument can be one of three things:\ (1) a full or partial Macintosh |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 14 | pathname, (2) an \pytype{FSSpec} object or (3) a 3-tuple \code{(\var{wdRefNum}, |
| 15 | \var{parID}, \var{name})} as described in \emph{Inside |
| 16 | Macintosh:\ Files}\@. A description of aliases and the Standard File |
| 17 | package can also be found there. |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 18 | |
| 19 | \begin{funcdesc}{FSSpec}{file} |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 20 | Create an \pytype{FSSpec} object for the specified file. |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 21 | \end{funcdesc} |
| 22 | |
| 23 | \begin{funcdesc}{RawFSSpec}{data} |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 24 | Create an \pytype{FSSpec} object given the raw data for the \C{} |
| 25 | structure for the \pytype{FSSpec} as a string. This is mainly useful |
| 26 | if you have obtained an \pytype{FSSpec} structure over a network. |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 27 | \end{funcdesc} |
| 28 | |
| 29 | \begin{funcdesc}{RawAlias}{data} |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 30 | Create an \pytype{Alias} object given the raw data for the \C{} |
| 31 | structure for the alias as a string. This is mainly useful if you |
| 32 | have obtained an \pytype{FSSpec} structure over a network. |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 33 | \end{funcdesc} |
| 34 | |
Jack Jansen | e164bd8 | 1995-08-10 11:53:14 +0000 | [diff] [blame] | 35 | \begin{funcdesc}{FInfo}{} |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 36 | Create a zero-filled \pytype{FInfo} object. |
Jack Jansen | e164bd8 | 1995-08-10 11:53:14 +0000 | [diff] [blame] | 37 | \end{funcdesc} |
| 38 | |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 39 | \begin{funcdesc}{ResolveAliasFile}{file} |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 40 | Resolve an alias file. Returns a 3-tuple \code{(\var{fsspec}, |
| 41 | \var{isfolder}, \var{aliased})} where \var{fsspec} is the resulting |
| 42 | \pytype{FSSpec} object, \var{isfolder} is true if \var{fsspec} points |
| 43 | to a folder and \var{aliased} is true if the file was an alias in the |
| 44 | first place (otherwise the \pytype{FSSpec} object for the file itself |
| 45 | is returned). |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 46 | \end{funcdesc} |
| 47 | |
Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 48 | \begin{funcdesc}{StandardGetFile}{\optional{type, ...}} |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 49 | Present the user with a standard ``open input file'' |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 50 | dialog. Optionally, you can pass up to four 4-character file types to limit |
| 51 | the files the user can choose from. The function returns an \pytype{FSSpec} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 52 | object and a flag indicating that the user completed the dialog |
| 53 | without cancelling. |
| 54 | \end{funcdesc} |
| 55 | |
Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 56 | \begin{funcdesc}{PromptGetFile}{prompt\optional{, type, ...}} |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 57 | Similar to \function{StandardGetFile()} but allows you to specify a |
| 58 | prompt. |
Jack Jansen | 0e13374 | 1995-08-14 13:39:16 +0000 | [diff] [blame] | 59 | \end{funcdesc} |
| 60 | |
Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 61 | \begin{funcdesc}{StandardPutFile}{prompt, \optional{default}} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 62 | Present the user with a standard ``open output file'' |
| 63 | dialog. \var{prompt} is the prompt string, and the optional |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 64 | \var{default} argument initializes the output file name. The function |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 65 | returns an \pytype{FSSpec} object and a flag indicating that the user |
| 66 | completed the dialog without cancelling. |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 67 | \end{funcdesc} |
| 68 | |
Jack Jansen | 0e13374 | 1995-08-14 13:39:16 +0000 | [diff] [blame] | 69 | \begin{funcdesc}{GetDirectory}{\optional{prompt}} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 70 | Present the user with a non-standard ``select a directory'' |
Jack Jansen | 0e13374 | 1995-08-14 13:39:16 +0000 | [diff] [blame] | 71 | dialog. \var{prompt} is the prompt string, and the optional. |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 72 | Return an \pytype{FSSpec} object and a success-indicator. |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 73 | \end{funcdesc} |
| 74 | |
Guido van Rossum | 910a671 | 1996-07-30 18:22:31 +0000 | [diff] [blame] | 75 | \begin{funcdesc}{SetFolder}{\optional{fsspec}} |
| 76 | Set the folder that is initially presented to the user when one of |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 77 | the file selection dialogs is presented. \var{fsspec} should point to |
Guido van Rossum | 910a671 | 1996-07-30 18:22:31 +0000 | [diff] [blame] | 78 | a file in the folder, not the folder itself (the file need not exist, |
| 79 | though). If no argument is passed the folder will be set to the |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 80 | current directory, i.e. what \function{os.getcwd()} returns. |
Guido van Rossum | 910a671 | 1996-07-30 18:22:31 +0000 | [diff] [blame] | 81 | |
| 82 | Note that starting with system 7.5 the user can change Standard File |
| 83 | behaviour with the ``general controls'' controlpanel, thereby making |
| 84 | this call inoperative. |
| 85 | \end{funcdesc} |
| 86 | |
Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 87 | \begin{funcdesc}{FindFolder}{where, which, create} |
Jack Jansen | e164bd8 | 1995-08-10 11:53:14 +0000 | [diff] [blame] | 88 | Locates one of the ``special'' folders that MacOS knows about, such as |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 89 | the trash or the Preferences folder. \var{where} is the disk to |
| 90 | search, \var{which} is the 4-character string specifying which folder to |
Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 91 | locate. Setting \var{create} causes the folder to be created if it |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 92 | does not exist. Returns a \code{(\var{vrefnum}, \var{dirid})} tuple. |
Fred Drake | 2999607 | 1997-08-22 13:45:13 +0000 | [diff] [blame] | 93 | \end{funcdesc} |
Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 94 | |
Guido van Rossum | e229d86 | 1997-08-18 15:14:26 +0000 | [diff] [blame] | 95 | \begin{funcdesc}{NewAliasMinimalFromFullPath}{pathname} |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 96 | Return a minimal \pytype{alias} object that points to the given file, which |
Guido van Rossum | e229d86 | 1997-08-18 15:14:26 +0000 | [diff] [blame] | 97 | must be specified as a full pathname. This is the only way to create an |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 98 | \pytype{Alias} pointing to a non-existing file. |
Guido van Rossum | e229d86 | 1997-08-18 15:14:26 +0000 | [diff] [blame] | 99 | |
Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 100 | The constants for \var{where} and \var{which} can be obtained from the |
| 101 | standard module \var{MACFS}. |
Jack Jansen | e164bd8 | 1995-08-10 11:53:14 +0000 | [diff] [blame] | 102 | \end{funcdesc} |
| 103 | |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 104 | \begin{funcdesc}{FindApplication}{creator} |
| 105 | Locate the application with 4-char creator code \var{creator}. The |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 106 | function returns an \pytype{FSSpec} object pointing to the application. |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 107 | \end{funcdesc} |
| 108 | |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 109 | \subsection{FSSpec objects} |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 110 | \label{fsspec-objects} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 111 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 112 | \begin{memberdesc}[FSSpec]{data} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 113 | The raw data from the FSSpec object, suitable for passing |
| 114 | to other applications, for instance. |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 115 | \end{memberdesc} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 116 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 117 | \begin{methoddesc}[FSSpec]{as_pathname}{} |
| 118 | Return the full pathname of the file described by the \pytype{FSSpec} |
| 119 | object. |
| 120 | \end{methoddesc} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 121 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 122 | \begin{methoddesc}[FSSpec]{as_tuple}{} |
| 123 | Return the \code{(\var{wdRefNum}, \var{parID}, \var{name})} tuple of |
| 124 | the file described by the \pytype{FSSpec} object. |
| 125 | \end{methoddesc} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 126 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 127 | \begin{methoddesc}[FSSpec]{NewAlias}{\optional{file}} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 128 | Create an Alias object pointing to the file described by this |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 129 | FSSpec. If the optional \var{file} parameter is present the alias |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 130 | will be relative to that file, otherwise it will be absolute. |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 131 | \end{methoddesc} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 132 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 133 | \begin{methoddesc}[FSSpec]{NewAliasMinimal}{} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 134 | Create a minimal alias pointing to this file. |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 135 | \end{methoddesc} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 136 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 137 | \begin{methoddesc}[FSSpec]{GetCreatorType}{} |
| 138 | Return the 4-character creator and type of the file. |
| 139 | \end{methoddesc} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 140 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 141 | \begin{methoddesc}[FSSpec]{SetCreatorType}{creator, type} |
| 142 | Set the 4-character creator and type of the file. |
| 143 | \end{methoddesc} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 144 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 145 | \begin{methoddesc}[FSSpec]{GetFInfo}{} |
| 146 | Return a \pytype{FInfo} object describing the finder info for the file. |
| 147 | \end{methoddesc} |
Jack Jansen | e164bd8 | 1995-08-10 11:53:14 +0000 | [diff] [blame] | 148 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 149 | \begin{methoddesc}[FSSpec]{SetFInfo}{finfo} |
| 150 | Set the finder info for the file to the values given as \var{finfo} |
| 151 | (an \pytype{FInfo} object). |
| 152 | \end{methoddesc} |
Jack Jansen | e164bd8 | 1995-08-10 11:53:14 +0000 | [diff] [blame] | 153 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 154 | \begin{methoddesc}[FSSpec]{GetDates}{} |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 155 | Return a tuple with three floating point values representing the |
| 156 | creation date, modification date and backup date of the file. |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 157 | \end{methoddesc} |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 158 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 159 | \begin{methoddesc}[FSSpec]{SetDates}{crdate, moddate, backupdate} |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 160 | Set the creation, modification and backup date of the file. The values |
| 161 | are in the standard floating point format used for times throughout |
| 162 | Python. |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 163 | \end{methoddesc} |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 164 | |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 165 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 166 | \subsection{Alias Objects} |
| 167 | \label{alias-objects} |
| 168 | |
| 169 | \begin{memberdesc}[Alias]{data} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 170 | The raw data for the Alias record, suitable for storing in a resource |
| 171 | or transmitting to other programs. |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 172 | \end{memberdesc} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 173 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 174 | \begin{methoddesc}[Alias]{Resolve}{\optional{file}} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 175 | Resolve the alias. If the alias was created as a relative alias you |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 176 | should pass the file relative to which it is. Return the FSSpec for |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 177 | the file pointed to and a flag indicating whether the \pytype{Alias} object |
Guido van Rossum | e229d86 | 1997-08-18 15:14:26 +0000 | [diff] [blame] | 178 | itself was modified during the search process. If the file does |
| 179 | not exist but the path leading up to it does exist a valid fsspec |
| 180 | is returned. |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 181 | \end{methoddesc} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 182 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 183 | \begin{methoddesc}[Alias]{GetInfo}{num} |
| 184 | An interface to the \C{} routine \cfunction{GetAliasInfo()}. |
| 185 | \end{methoddesc} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 186 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 187 | \begin{methoddesc}[Alias]{Update}{file, \optional{file2}} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 188 | Update the alias to point to the \var{file} given. If \var{file2} is |
| 189 | present a relative alias will be created. |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 190 | \end{methoddesc} |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 191 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 192 | Note that it is currently not possible to directly manipulate a |
| 193 | resource as an \pytype{Alias} object. Hence, after calling |
| 194 | \method{Update()} or after \method{Resolve()} indicates that the alias |
| 195 | has changed the Python program is responsible for getting the |
Fred Drake | df0e3fc | 1998-04-07 20:04:27 +0000 | [diff] [blame] | 196 | \member{data} value from the \pytype{Alias} object and modifying the |
| 197 | resource. |
Jack Jansen | e4be9be | 1995-02-28 15:46:09 +0000 | [diff] [blame] | 198 | |
| 199 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 200 | \subsection{FInfo Objects} |
| 201 | \label{finfo-objects} |
Jack Jansen | e164bd8 | 1995-08-10 11:53:14 +0000 | [diff] [blame] | 202 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 203 | See \emph{Inside Macintosh: Files} for a complete description of what |
| 204 | the various fields mean. |
Jack Jansen | e164bd8 | 1995-08-10 11:53:14 +0000 | [diff] [blame] | 205 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 206 | \begin{memberdesc}[FInfo]{Creator} |
| 207 | The 4-character creator code of the file. |
| 208 | \end{memberdesc} |
Jack Jansen | e164bd8 | 1995-08-10 11:53:14 +0000 | [diff] [blame] | 209 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 210 | \begin{memberdesc}[FInfo]{Type} |
| 211 | The 4-character type code of the file. |
| 212 | \end{memberdesc} |
Jack Jansen | e164bd8 | 1995-08-10 11:53:14 +0000 | [diff] [blame] | 213 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 214 | \begin{memberdesc}[FInfo]{Flags} |
Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 215 | The finder flags for the file as 16-bit integer. The bit values in |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 216 | \var{Flags} are defined in standard module \module{MACFS}. |
| 217 | \end{memberdesc} |
Jack Jansen | e164bd8 | 1995-08-10 11:53:14 +0000 | [diff] [blame] | 218 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 219 | \begin{memberdesc}[FInfo]{Location} |
Jack Jansen | e164bd8 | 1995-08-10 11:53:14 +0000 | [diff] [blame] | 220 | A Point giving the position of the file's icon in its folder. |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 221 | \end{memberdesc} |
Jack Jansen | e164bd8 | 1995-08-10 11:53:14 +0000 | [diff] [blame] | 222 | |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 223 | \begin{memberdesc}[FInfo]{Fldr} |
Jack Jansen | e164bd8 | 1995-08-10 11:53:14 +0000 | [diff] [blame] | 224 | The folder the file is in (as an integer). |
Fred Drake | 41788db | 1998-04-04 06:23:02 +0000 | [diff] [blame] | 225 | \end{memberdesc} |