mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 19:44:25 +01:00
add open flags to rename, #47475
This commit is contained in:
@@ -111,8 +111,8 @@ class RemoteFileSystemProvider implements ISimpleReadWriteProvider, IFileSystemP
|
||||
delete(resource: URI): TPromise<void, any> {
|
||||
return this._proxy.$delete(this._handle, resource);
|
||||
}
|
||||
rename(resource: URI, target: URI): TPromise<IStat, any> {
|
||||
return this._proxy.$move(this._handle, resource, target);
|
||||
rename(resource: URI, target: URI, opts: { flags: FileOpenFlags }): TPromise<IStat, any> {
|
||||
return this._proxy.$rename(this._handle, resource, target, opts.flags);
|
||||
}
|
||||
mkdir(resource: URI): TPromise<IStat, any> {
|
||||
return this._proxy.$mkdir(this._handle, resource);
|
||||
|
||||
Reference in New Issue
Block a user