+ 1
Application c#
Hey guys I am new to c# and as my project iam developing a windows form application. I want to know how to present your files folder or application in the wind form app. For eg: if i click movies button on my application then it opens the files of movies on my pc. Help pc
1 Odpowiedź
+ 1
Try using: Environment.GetFolderPath(Environment.SpecialFolder.MyVideos) to get the path to the folder. Google "c# environment specialfolder" to get a list of all special folders.
To save to a folder you can use the code above and add: +@"\FolderName\" + "FileName"
It was years ago I tried C# forms so im no expert.