This is in reference to another answer here on wordpress.stackexchange. The answerer used the filename as the hook to enqueue scripts and styles to certain pages.
add_action( 'admin_print_scripts-post-new.php', 'portfolio_admin_script', 11 );
add_action( 'admin_print_scripts-post.php', 'portfolio_admin_script', 11 );
The short answer is ‘yes’.
Taken from this article the suffix of those ‘screen specific hooks’ is given by:
add_menu_page()
– including settings pages – (and related functions) it is the screen ID (the value returned byadd_menu_page()
)edit.php
post-new.php
post.php
edit-tags.php
You may find this plug-in useful, developed by @Kaiser, based on the article linked to above.