mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
files - implement ctime properly as btime (fix #84525)
This commit is contained in:
@@ -52,7 +52,7 @@ export class MainThreadFileSystem implements MainThreadFileSystemShape {
|
||||
$stat(uri: UriComponents): Promise<IStat> {
|
||||
return this._fileService.resolve(URI.revive(uri), { resolveMetadata: true }).then(stat => {
|
||||
return {
|
||||
ctime: 0,
|
||||
ctime: stat.ctime,
|
||||
mtime: stat.mtime,
|
||||
size: stat.size,
|
||||
type: MainThreadFileSystem._getFileType(stat)
|
||||
|
||||
Reference in New Issue
Block a user