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 |
Jack Jansen | 7aeba45 | 2003-02-12 09:58:33 +0000 | [diff] [blame] | 10 | on the Macintosh. All file parameters can be specified as |
| 11 | pathnames, \class{FSRef} or \class{FSSpec} objects. |
Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 12 | |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 13 | The \module{macostools} module defines the following functions: |
Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 14 | |
Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 15 | |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 16 | \begin{funcdesc}{copy}{src, dst\optional{, createpath\optional{, copytimes}}} |
Jack Jansen | 7aeba45 | 2003-02-12 09:58:33 +0000 | [diff] [blame] | 17 | Copy file \var{src} to \var{dst}. 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 | 7aeba45 | 2003-02-12 09:58:33 +0000 | [diff] [blame] | 32 | Create a finder alias \var{dst} pointing to \var{src}. |
Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 33 | \end{funcdesc} |
| 34 | |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 35 | \begin{funcdesc}{touched}{dst} |
| 36 | Tell the finder that some bits of finder-information such as creator |
| 37 | 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] | 38 | 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] | 39 | files icon. |
| 40 | \end{funcdesc} |
| 41 | |
Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 42 | \begin{datadesc}{BUFSIZ} |
| 43 | The buffer size for \code{copy}, default 1 megabyte. |
| 44 | \end{datadesc} |
| 45 | |
| 46 | Note that the process of creating finder aliases is not specified in |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 47 | the Apple documentation. Hence, aliases created with \function{mkalias()} |
Jack Jansen | da53c52 | 1995-10-10 14:43:20 +0000 | [diff] [blame] | 48 | could conceivably have incompatible behaviour in some cases. |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 49 | |
Fred Drake | fe7f3bc | 1998-07-23 17:55:31 +0000 | [diff] [blame] | 50 | |
Fred Drake | f6863c1 | 1999-03-02 16:37:17 +0000 | [diff] [blame] | 51 | \section{\module{findertools} --- |
| 52 | The \program{finder}'s Apple Events interface} |
| 53 | |
| 54 | \declaremodule{standard}{findertools} |
| 55 | \platform{Mac} |
Fred Drake | fe7f3bc | 1998-07-23 17:55:31 +0000 | [diff] [blame] | 56 | \modulesynopsis{Wrappers around the \program{finder}'s Apple Events interface.} |
| 57 | |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 58 | |
| 59 | This module contains routines that give Python programs access to some |
| 60 | functionality provided by the finder. They are implemented as wrappers |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 61 | around the AppleEvent\index{AppleEvents} interface to the finder. |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 62 | |
| 63 | All file and folder parameters can be specified either as full |
Jack Jansen | 7aeba45 | 2003-02-12 09:58:33 +0000 | [diff] [blame] | 64 | pathnames, or as \class{FSRef} or \class{FSSpec} objects. |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 65 | |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 66 | The \module{findertools} module defines the following functions: |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 67 | |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 68 | |
| 69 | \begin{funcdesc}{launch}{file} |
| 70 | Tell the finder to launch \var{file}. What launching means depends on the file: |
| 71 | applications are started, folders are opened and documents are opened |
| 72 | in the correct application. |
| 73 | \end{funcdesc} |
| 74 | |
| 75 | \begin{funcdesc}{Print}{file} |
Jack Jansen | 7aeba45 | 2003-02-12 09:58:33 +0000 | [diff] [blame] | 76 | Tell the finder to print a file. The behaviour is identical to selecting the file and using |
Fred Drake | 8f6ca15 | 2000-10-14 04:59:12 +0000 | [diff] [blame] | 77 | the print command in the finder's file menu. |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 78 | \end{funcdesc} |
| 79 | |
| 80 | \begin{funcdesc}{copy}{file, destdir} |
| 81 | Tell the finder to copy a file or folder \var{file} to folder |
Jack Jansen | 7aeba45 | 2003-02-12 09:58:33 +0000 | [diff] [blame] | 82 | \var{destdir}. The function returns an \class{Alias} object pointing to |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 83 | the new file. |
| 84 | \end{funcdesc} |
| 85 | |
| 86 | \begin{funcdesc}{move}{file, destdir} |
| 87 | Tell the finder to move a file or folder \var{file} to folder |
Jack Jansen | 7aeba45 | 2003-02-12 09:58:33 +0000 | [diff] [blame] | 88 | \var{destdir}. The function returns an \class{Alias} object pointing to |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 89 | the new file. |
| 90 | \end{funcdesc} |
| 91 | |
| 92 | \begin{funcdesc}{sleep}{} |
Fred Drake | 6188592 | 1998-04-03 07:16:46 +0000 | [diff] [blame] | 93 | Tell the finder to put the Macintosh to sleep, if your machine |
| 94 | supports it. |
Guido van Rossum | 7e42cab | 1996-10-15 14:37:31 +0000 | [diff] [blame] | 95 | \end{funcdesc} |
| 96 | |
| 97 | \begin{funcdesc}{restart}{} |
| 98 | Tell the finder to perform an orderly restart of the machine. |
| 99 | \end{funcdesc} |
| 100 | |
| 101 | \begin{funcdesc}{shutdown}{} |
| 102 | Tell the finder to perform an orderly shutdown of the machine. |
| 103 | \end{funcdesc} |