Renzum
Renzum

Reputation: 51

How to find the music folder directory using C#?

I made a script which checks a special dir for music and records the song names in a text file. But my problem is that I have to give the dir manually. Is there a way in C# to find the Music folder on windows automatically?

Upvotes: 4

Views: 2232

Answers (2)

SledgeHammer
SledgeHammer

Reputation: 7736

Environment.GetFolderPath(Environment.SpecialFolder.MyMusic);

Upvotes: 11

H.G. Sandhagen
H.G. Sandhagen

Reputation: 822

Environment.GetFolderPath(Environment.SpecialFolder.MyMusic));

Upvotes: 3

Related Questions