mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 00:04:14 +08:00
46 lines
1.8 KiB
TypeScript
46 lines
1.8 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { basename } from 'vs/base/common/path';
|
|
import { isWindows } from 'vs/base/common/platform';
|
|
import { localize } from 'vs/nls';
|
|
import { FileDeleteOptions, FileSystemProviderCapabilities } from 'vs/platform/files/common/files';
|
|
import { DiskFileSystemProvider as NodeDiskFileSystemProvider, IDiskFileSystemProviderOptions } from 'vs/platform/files/node/diskFileSystemProvider';
|
|
import { ILogService } from 'vs/platform/log/common/log';
|
|
import { INativeHostService } from 'vs/platform/native/electron-sandbox/native';
|
|
|
|
export class DiskFileSystemProvider extends NodeDiskFileSystemProvider {
|
|
|
|
constructor(
|
|
logService: ILogService,
|
|
private readonly nativeHostService: INativeHostService,
|
|
options?: IDiskFileSystemProviderOptions
|
|
) {
|
|
super(logService, options);
|
|
}
|
|
|
|
override get capabilities(): FileSystemProviderCapabilities {
|
|
if (!this._capabilities) {
|
|
this._capabilities = super.capabilities | FileSystemProviderCapabilities.Trash;
|
|
}
|
|
|
|
return this._capabilities;
|
|
}
|
|
|
|
protected override async doDelete(filePath: string, opts: FileDeleteOptions): Promise<void> {
|
|
if (!opts.useTrash) {
|
|
return super.doDelete(filePath, opts);
|
|
}
|
|
|
|
try {
|
|
await this.nativeHostService.moveItemToTrash(filePath);
|
|
} catch (error) {
|
|
this.logService.error(error);
|
|
|
|
throw new Error(isWindows ? localize('binFailed', "Failed to move '{0}' to the recycle bin", basename(filePath)) : localize('trashFailed', "Failed to move '{0}' to the trash", basename(filePath)));
|
|
}
|
|
}
|
|
}
|