Michel Keijzers
Michel Keijzers

Reputation: 15367

How can I get my folders back in a Visual Studio 2019 project?

I use Visual Studio 2019 (C++ project).

Because I got quite a lot of files, I split them in folders (just for viewing, on disk it seems one big folder).

However, as of today, in the Solution Explorer pane, I do not see any files anymore, but the message:

All items have been filtered from view.

What can I do to retrieve my folders/files in the Solution Explorer again?

Note, there is a Change View icon in the toolbar of the Solution Explorer. If I switch the view, I see all my files, but without any folder hierarchy (one big list of files).

Upvotes: 1

Views: 3736

Answers (2)

Jaryn
Jaryn

Reputation: 486

Check if you have selected 'Pending changes filter (ctrl + [, P)' in solution explorer. It is icon with clock (by default 4th from left). If you have, then unselect it.

Upvotes: 6

Michel Keijzers
Michel Keijzers

Reputation: 15367

Solution:

  • In the Solution Explorer toolbar is a button 'Show All Files' (third bottom from the right); select it.
  • Change the view if necessary (fourth button from the left).

Upvotes: 1

Related Questions