Lines Matching refs:Dir
137 opendir(path: string): Promise<Dir>
157 | Promise<[Dir](#dir)> | Promise used to return the **Dir** object opened.|
164 fileio.opendir(dirPath).then((dir: fileio.Dir) => {
174 opendir(path: string, callback: AsyncCallback<Dir>): void
189 | callback | AsyncCallback<[Dir](#dir)> | Yes | Callback used to return the result. |
195 fileio.opendir(pathDir, (err: BusinessError, dir: fileio.Dir) => {
196 // Example code in Dir struct
204 opendirSync(path: string): Dir
224 | [Dir](#dir) | A **Dir** instance corresponding to the directory.|
230 // Example code in Dir struct
3725 ## Dir section
3727 …fore calling a method of the **Dir** class, use the **opendir()** method synchronously or asynchro…
3823 … After a directory is closed, the FD in **Dir** will be released and no directory entry can be rea…
3845 … After a directory is closed, the FD in **Dir** will be released and no directory entry can be rea…
3867 … After a directory is closed, the FD in **Dir** will be released and no directory entry can be rea…