How to make @hideifpath:"/mypictures" apply to all subfolders ?

//we can use (|\*) in a absolute path.
@hideifpath:C:\ProgramData(|\*)

//but can not use it in an alias path. this is ineffective.
@hideifpath:/mypictures(|\*)
// or
@hideifpath:{=Resolve("/mypictures")=}(|\*)

//we can HIDE the button in all subfolders Except for the parent path /mypictures itself.
@hideifpath:/mypictures\*
@hideifpath:/mypictures\(|*)

Is there a way to hide the button in /mypictures (alias folder) AND all subfolders in it?

@hideifpath:/mypictures
@hideifpath:/mypictures/*
1 Like