How to access contents of only one particular folder/page?

You can grab a specific page on the first level like this:

page('projects');
page('projects')->title();

To get the children of the projects page:

$pages = page('projects')->children();
foreach($pages as $page) {
echo $page->title();
//or whatever
}