I'm saying that if your path begins with a "/", you're defining an absolute path.
If you're on a Windows system, that's the same thing as opening My Computer and double-clicking on the "Local Drive (C🙂" icon. That's the root of the drive; if you see the next directory in the path ('Music' in your example above, '/Music/...'), then I'm saying you have the right path.
If you don't see it, however, then neither can PHP.
If you're trying to specify a path relative to the root of your website, that's an entirely different situation; to do that, you could use code such as:
include($_SERVER['DOCUMENT_ROOT'] . '/Music/...');
provided that the document root is configured correctly in PHP.