Home | History | Annotate | Download | only in fs

Lines Matching refs:directory

101      * Opens sub-directory in this directory
109 UnixPath child = ds.directory().resolve(file);
112 // permission check using name resolved against original path of directory
123 // open directory and create new secure directory stream
150 * Opens file in this directory
164 String pathToCheck = ds.directory().resolve(file).getPathForPermissionCheck();
182 * Deletes file/directory in this directory. Works in a race-free manner
190 // permission check using name resolved against original path of directory
193 ds.directory().resolve(file).checkDelete();
202 // need file attribute to know if file is directory. This creates
203 // a race in that the file may be replaced by a directory or a
204 // directory replaced by a file between the time we query the
241 * Rename/move file in this directory to another (open) directory
258 this.ds.directory().resolve(from).checkWrite();
259 that.ds.directory().resolve(to).checkWrite();
305 * Returns file attribute view bound to this directory
356 ds.directory().checkWrite();
358 ds.directory().resolve(file).checkWrite();
378 ds.directory().checkRead();
380 ds.directory().resolve(file).checkRead();
472 ds.directory().checkRead();
474 ds.directory