mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 18:49:00 +01:00
operations that create a file/folder should return a stat-object because we want it anyways
This commit is contained in:
@@ -484,8 +484,8 @@ export interface ExtHostFileSystemShape {
|
||||
$read(handle: number, resource: URI): TPromise<void>;
|
||||
$write(handle: number, resource: URI, content: number[]): TPromise<void>;
|
||||
$unlink(handle: number, resource: URI): TPromise<void>;
|
||||
$rename(handle: number, resource: URI, target: URI): TPromise<void>;
|
||||
$mkdir(handle: number, resource: URI): TPromise<void>;
|
||||
$move(handle: number, resource: URI, target: URI): TPromise<IStat>;
|
||||
$mkdir(handle: number, resource: URI): TPromise<IStat>;
|
||||
$readdir(handle: number, resource: URI): TPromise<[URI, IStat][]>;
|
||||
$rmdir(handle: number, resource: URI): TPromise<void>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user