Folder Button

I've made a button to go to a specific folder I use quite a bit with the following command:

GO "F:\foldername" VIEW=details

It goes to the folder fine, but shows none of the included files, and shows them as hidden in the status bar.

I then tried the following:

GO "F:\foldername" SHOWHIDDEN

And then tried:

GO "F:\foldername" SHOWHIDDEN/S

Still not working. What am I missing?

You probably have a filter or two enabled which are masking your hidden files. There are different ways to overcome that, you can try adding the

Set CLEARFILTERS

command beneath your current button command. Or you could reset each possibly set filter one at a time by adding something like the following beneath your current button command:

Set HIDEFILTERFILENAME
Set HIDEFILTERFOLDERS
Set SHOWFILTERFILENAME
Set SHOWFILTERFOLDERS
Set SHOWFILTERATTR
Set HIDEFILTERATTR

Myself I have a style configured called "Default" that automatically resets everything (turns off filters, returns to details view, etc) that I just click my mouse on to reset everything.

[quote="JohnZeman"]You probably have a filter or two enabled which are masking your hidden files. There are different ways to overcome that, you can try adding the

Set CLEARFILTERS

command beneath your current button command. Or you could reset each possibly set filter one at a time by adding something like the following beneath your current button command:

Set HIDEFILTERFILENAME
Set HIDEFILTERFOLDERS
Set SHOWFILTERFILENAME
Set SHOWFILTERFOLDERS
Set SHOWFILTERATTR
Set HIDEFILTERATTR

Myself I have a style configured called "Default" that automatically resets everything (turns off filters, returns to details view, etc) that I just click my mouse on to reset everything.[/quote]

That did it. Thanks John!