@@ -98,8 +98,7 @@ ExtendScript assigns the home directory value directly from the platform value.
98
98
99
99
On Windows, the ``HOME `` environment variable is optional. If it is assigned, its value must be a Windows path
100
100
name or a path name referring to a remote server (such as ``\\myhost\mydir ``). If the ``HOME `` environment
101
- variable is undefined, the ExtendScript default is the user's home directory, usually the ``C:\Documents and
102
- Settings\username `` folder.
101
+ variable is undefined, the ExtendScript default is the user's home directory, usually the ``C:\Users\username `` folder.
103
102
104
103
.. note :: A script can access many of the folders that are specified with platform-specific variables through
105
104
static, globally available Folder class properties; for instance, ``appData `` contains the folder that stores
@@ -156,10 +155,10 @@ These examples assume that the current drive is ``D:``
156
155
================ =======================================
157
156
URI path name Windows path name
158
157
================ =======================================
159
- /c/dir/file c:\d ir\f ile
160
- /remote/dir/file D:\r emote\d ir\f ile
161
- /root/dir/file D:\r oot\d ir\f ile
162
- ~/dir/file C:\D ocuments and Settings \ j doe\d ir\f ile
158
+ /c/dir/file c:\\ dir\ \ file
159
+ /remote/dir/file D:\\ remote\\ dir\ \ file
160
+ /root/dir/file D:\\ root\\ dir\ \ file
161
+ ~/dir/file C:\\ Users \\ jdoe\\ dir\ \ file
163
162
================ =======================================
164
163
165
164
Aliases
@@ -173,7 +172,7 @@ On Windows, all file system aliases (called shortcuts) are actual files whose na
173
172
``.lnk ``. Never use this extension directly; the File and Folder objects work without it.
174
173
175
174
For example, suppose there is a shortcut to the file ``/folder1/some.txt `` in the folder ``/folder2 ``. The full
176
- Windows file name of the shortcut file is`` \f older2\s ome.txt.lnk``.
175
+ Windows file name of the shortcut file is `` \folder2\some.txt.lnk ``.
177
176
178
177
To access the shortcut from a File object, specify the path ``/folder2/some.txt ``. Calling that File object's
179
178
open method opens the linked file (in ``/folder1 ``). Calling the File object's ``rename `` method renames the
0 commit comments