| Fred Drake | c817e27 | 1998-08-10 18:40:22 +0000 | [diff] [blame] | 1 | \section{\module{macostools} --- | 
| Fred Drake | f6863c1 | 1999-03-02 16:37:17 +0000 | [diff] [blame] | 2 |          Convenience routines for file manipulation} | 
| Fred Drake | fe7f3bc | 1998-07-23 17:55:31 +0000 | [diff] [blame] | 3 |  | 
| Fred Drake | f6863c1 | 1999-03-02 16:37:17 +0000 | [diff] [blame] | 4 | \declaremodule{standard}{macostools} | 
 | 5 |   \platform{Mac} | 
| Fred Drake | fe7f3bc | 1998-07-23 17:55:31 +0000 | [diff] [blame] | 6 | \modulesynopsis{Convenience routines for file manipulation.} | 
 | 7 |  | 
| Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 8 |  | 
 | 9 | This module contains some convenience routines for file-manipulation | 
 | 10 | on the Macintosh. | 
 | 11 |  | 
| Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 12 | The \module{macostools} module defines the following functions: | 
| Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 13 |  | 
| Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 14 |  | 
| Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 15 | \begin{funcdesc}{copy}{src, dst\optional{, createpath\optional{, copytimes}}} | 
| Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 16 | Copy file \var{src} to \var{dst}. The files can be specified as | 
| Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 17 | pathnames or \pytype{FSSpec} objects. If \var{createpath} is non-zero | 
| Jack Jansen | 4104b50 | 2002-08-06 22:14:23 +0000 | [diff] [blame] | 18 | the folders leading to \var{dst} are created if necessary. | 
 | 19 | The method copies data and | 
| Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 20 | resource fork and some finder information (creator, type, flags) and | 
 | 21 | optionally the creation, modification and backup times (default is to | 
 | 22 | copy them). Custom icons, comments and icon position are not copied. | 
| Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 23 | \end{funcdesc} | 
 | 24 |  | 
| Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 25 | \begin{funcdesc}{copytree}{src, dst} | 
| Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 26 | Recursively copy a file tree from \var{src} to \var{dst}, creating | 
| Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 27 | folders as needed. \var{src} and \var{dst} should be specified as | 
| Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 28 | pathnames. | 
 | 29 | \end{funcdesc} | 
 | 30 |  | 
| Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 31 | \begin{funcdesc}{mkalias}{src, dst} | 
| Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 32 | Create a finder alias \var{dst} pointing to \var{src}. Both may be | 
| Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 33 | specified as pathnames or \pytype{FSSpec} objects. | 
| Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 34 | \end{funcdesc} | 
 | 35 |  | 
| Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 36 | \begin{funcdesc}{touched}{dst} | 
 | 37 | Tell the finder that some bits of finder-information such as creator | 
 | 38 | or type for file \var{dst} has changed. The file can be specified by | 
| Fred Drake | 8f6ca15 | 2000-10-14 04:59:12 +0000 | [diff] [blame] | 39 | pathname or fsspec. This call should tell the finder to redraw the | 
| Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 40 | files icon. | 
 | 41 | \end{funcdesc} | 
 | 42 |  | 
| Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 43 | \begin{datadesc}{BUFSIZ} | 
 | 44 | The buffer size for \code{copy}, default 1 megabyte. | 
 | 45 | \end{datadesc} | 
 | 46 |  | 
 | 47 | Note that the process of creating finder aliases is not specified in | 
| Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 48 | the Apple documentation. Hence, aliases created with \function{mkalias()} | 
| Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 49 | could conceivably have incompatible behaviour in some cases. | 
| Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 50 |  | 
| Fred Drake | fe7f3bc | 1998-07-23 17:55:31 +0000 | [diff] [blame] | 51 |  | 
| Fred Drake | f6863c1 | 1999-03-02 16:37:17 +0000 | [diff] [blame] | 52 | \section{\module{findertools} --- | 
 | 53 |          The \program{finder}'s Apple Events interface} | 
 | 54 |  | 
 | 55 | \declaremodule{standard}{findertools} | 
 | 56 |   \platform{Mac} | 
| Fred Drake | fe7f3bc | 1998-07-23 17:55:31 +0000 | [diff] [blame] | 57 | \modulesynopsis{Wrappers around the \program{finder}'s Apple Events interface.} | 
 | 58 |  | 
| Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 59 |  | 
 | 60 | This module contains routines that give Python programs access to some | 
 | 61 | functionality provided by the finder. They are implemented as wrappers | 
| Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 62 | around the AppleEvent\index{AppleEvents} interface to the finder. | 
| Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 63 |  | 
 | 64 | All file and folder parameters can be specified either as full | 
| Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 65 | pathnames or as \pytype{FSSpec} objects. | 
| Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 66 |  | 
| Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 67 | The \module{findertools} module defines the following functions: | 
| Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 68 |  | 
| Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 69 |  | 
 | 70 | \begin{funcdesc}{launch}{file} | 
 | 71 | Tell the finder to launch \var{file}. What launching means depends on the file: | 
 | 72 | applications are started, folders are opened and documents are opened | 
 | 73 | in the correct application. | 
 | 74 | \end{funcdesc} | 
 | 75 |  | 
 | 76 | \begin{funcdesc}{Print}{file} | 
 | 77 | Tell the finder to print a file (again specified by full pathname or | 
| Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 78 | \pytype{FSSpec}). The behaviour is identical to selecting the file and using | 
| Fred Drake | 8f6ca15 | 2000-10-14 04:59:12 +0000 | [diff] [blame] | 79 | the print command in the finder's file menu. | 
| Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 80 | \end{funcdesc} | 
 | 81 |  | 
 | 82 | \begin{funcdesc}{copy}{file, destdir} | 
 | 83 | Tell the finder to copy a file or folder \var{file} to folder | 
| Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 84 | \var{destdir}. The function returns an \pytype{Alias} object pointing to | 
| Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 85 | the new file. | 
 | 86 | \end{funcdesc} | 
 | 87 |  | 
 | 88 | \begin{funcdesc}{move}{file, destdir} | 
 | 89 | Tell the finder to move a file or folder \var{file} to folder | 
| Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 90 | \var{destdir}. The function returns an \pytype{Alias} object pointing to | 
| Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 91 | the new file. | 
 | 92 | \end{funcdesc} | 
 | 93 |  | 
 | 94 | \begin{funcdesc}{sleep}{} | 
| Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 95 | Tell the finder to put the Macintosh to sleep, if your machine | 
 | 96 | supports it. | 
| Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 97 | \end{funcdesc} | 
 | 98 |  | 
 | 99 | \begin{funcdesc}{restart}{} | 
 | 100 | Tell the finder to perform an orderly restart of the machine. | 
 | 101 | \end{funcdesc} | 
 | 102 |  | 
 | 103 | \begin{funcdesc}{shutdown}{} | 
 | 104 | Tell the finder to perform an orderly shutdown of the machine. | 
 | 105 | \end{funcdesc} |