Hello Hope Sain,
I am assuming that your vscode project is still on your computer, that it is in some directory that you remember part of the name of and that it is on some drive on your computer
Then the powershell script below can help you find the directory you need
Write the script below on some editor (like vscode), then save it with .ps1 extension
remember to change "dir_name_path" with part of the name of project name that you remember and "C:" with the driver you want to search
$searchTerm = "dir_name_path" # Replace with the part of the directory name you want to search
$directoryBase = "C:" # Replace with the drive you want to search
$foundDirectories = Get-ChildItem -Path $directoryBase -Recurse -Directory | Where-Object { $_.Name -like "*$searchTerm*" }
if ($foundDirectories.Count -gt 0) {
foreach ($directory in $foundDirectories) {
Write-Host "directory found: $($directory.FullName)"
}
} else {
Write-Host "No directory found with the name '$searchTerm'."
}
Then execute the ps file on your terminal. This may take a while
Best regards