How to check active theme is parent or child wordpress

I try this code and it solve my problem

if ( is_child_theme() === false ) {
    // files moved
} else {
    // do nothing
}

Thankx to @birgire