1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
15 * The Original Code is Mozilla Communicator client code, released
18 * The Initial Developer of the Original Code is
19 * Netscape Communications Corporation.
20 * Portions created by the Initial Developer are Copyright (C) 1998-1999
21 * the Initial Developer. All Rights Reserved.
24 * Doug Turner <dougt@netscape.com>
25 * Darin Fisher <darin@netscape.com>
27 * Alternatively, the contents of this file may be used under the terms of
28 * either of the GNU General Public License Version 2 or later (the "GPL"),
29 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
30 * in which case the provisions of the GPL or the LGPL are applicable instead
31 * of those above. If you wish to allow use of your version of this file only
32 * under the terms of either the GPL or the LGPL, and not to allow others to
33 * use your version of this file under the terms of the MPL, indicate your
34 * decision by deleting the provisions above and replace them with the notice
35 * and other provisions required by the GPL or the LGPL. If you do not delete
36 * the provisions above, a recipient may use your version of this file under
37 * the terms of any one of the MPL, the GPL or the LGPL.
39 * ***** END LICENSE BLOCK ***** */
41 #include
"nsIFile.idl"
49 [ptr] native PRFileDescStar
(PRFileDesc
);
50 [ptr] native PRLibraryStar
(PRLibrary
);
51 [ptr] native FILE
(FILE
);
54 * This interface adds methods to nsIFile that are particular to a file
55 * that is accessible via the local file system.
57 * It follows the same string conventions as nsIFile.
61 [scriptable
, uuid(aa610f20
-a889
-11d3
-8c81
-000064657374)]
62 interface nsILocalFile
: nsIFile
65 * initWith[Native]Path
67 * This function will initialize the nsILocalFile object. Any
68 * internal state information will be reset.
70 * NOTE: This function has a known bug on the macintosh and
71 * other OSes which do not represent file locations as paths.
72 * If you do use this function, be very aware of this problem!
75 * A string which specifies a full file path to a
76 * location. Relative paths will be treated as an
77 * error (NS_ERROR_FILE_UNRECOGNIZED_PATH). For
78 * initWithNativePath, the filePath must be in the native
81 void initWithPath
(in AString filePath
);
82 [noscript
] void initWithNativePath
(in ACString filePath
);
87 * Initialize this object with another file
90 * the file this becomes equivalent to
92 void initWithFile
(in nsILocalFile aFile
);
97 * This attribute will determine if the nsLocalFile will auto
98 * resolve symbolic links. By default, this value will be false
99 * on all non unix systems. On unix, this attribute is effectively
102 attribute PRBool followLinks
;
105 * Return the result of PR_Open on the file. The caller is
106 * responsible for calling PR_Close on the result.
108 [noscript
] PRFileDescStar openNSPRFileDesc
(in long flags
, in long mode
);
111 * Return the result of fopen on the file. The caller is
112 * responsible for calling fclose on the result.
114 [noscript
] FILE openANSIFileDesc
(in string mode
);
117 * Return the result of PR_LoadLibrary on the file. The caller is
118 * responsible for calling PR_UnloadLibrary on the result.
120 [noscript
] PRLibraryStar load
();
122 readonly attribute PRInt64 diskSpaceAvailable
;
125 * appendRelative[Native]Path
127 * Append a relative path to the current path of the nsILocalFile object.
129 * @param relativeFilePath
130 * relativeFilePath is a native relative path. For security reasons,
131 * this cannot contain .. or cannot start with a directory separator.
132 * For the |appendRelativeNativePath| method, the relativeFilePath
133 * must be in the native filesystem charset.
135 void appendRelativePath
(in AString relativeFilePath
);
136 [noscript
] void appendRelativeNativePath
(in ACString relativeFilePath
);
139 * Accessor to a null terminated string which will specify
140 * the file in a persistent manner for disk storage.
142 * The character set of this attribute is undefined. DO NOT TRY TO
143 * INTERPRET IT AS HUMAN READABLE TEXT!
145 attribute ACString persistentDescriptor
;
150 * Ask the operating system to open the folder which contains
151 * this file or folder. This routine only works on platforms which
152 * support the ability to open a folder...
159 * Ask the operating system to attempt to open the file.
160 * this really just simulates "double clicking" the file on your platform.
161 * This routine only works on platforms which support this functionality.
166 * getRelativeDescriptor
168 * Returns a relative file path in an opaque, XP format. It is therefore
171 * The character set of the string returned from this function is
172 * undefined. DO NOT TRY TO INTERPRET IT AS HUMAN READABLE TEXT!
175 * the file from which the descriptor is relative.
176 * There is no defined result if this param is null.
178 ACString getRelativeDescriptor
(in nsILocalFile fromFile
);
181 * setRelativeDescriptor
183 * Initializes the file to the location relative to fromFile using
184 * a string returned by getRelativeDescriptor.
187 * the file to which the descriptor is relative
189 * the relative descriptor obtained from getRelativeDescriptor
191 void setRelativeDescriptor
(in nsILocalFile fromFile
, in ACString relativeDesc
);