* If `path` points to a symbolic link, it will be resolved and the returned information is about the target (with `type` being `LinuxFileType.File` or `LinuxFileType.Directory`).
*/
asyncstat(path:string){
if (!this.supportsStat){
if (!this.#supportsStat){
thrownewError("Not supported");
}
returnawaitadbSyncStat(this._socket,path);
}
/**
* Checks if `path` is a directory, or a symbolic link to a directory.
*
* This uses `lstat` internally, thus works on all Android versions.