mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 21:01:34 +08:00
fix(fs): wrong common paths
This commit is contained in:
@ -734,13 +734,13 @@ export class FileSystemAccess29 extends FileSystemAccess {
|
|||||||
return super.getDocumentsFolderPath();
|
return super.getDocumentsFolderPath();
|
||||||
}
|
}
|
||||||
getTempFolderPath(): string {
|
getTempFolderPath(): string {
|
||||||
return super.getDocumentsFolderPath();
|
return super.getTempFolderPath();
|
||||||
}
|
}
|
||||||
getLogicalRootPath(): string {
|
getLogicalRootPath(): string {
|
||||||
return super.getDocumentsFolderPath();
|
return super.getLogicalRootPath();
|
||||||
}
|
}
|
||||||
getCurrentAppPath(): string {
|
getCurrentAppPath(): string {
|
||||||
return super.getDocumentsFolderPath();
|
return super.getCurrentAppPath();
|
||||||
}
|
}
|
||||||
public readText = this.readTextSync.bind(this);
|
public readText = this.readTextSync.bind(this);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user