Answers for "get specific folder path in c#"

C#
0

get folders in directory c#

string[] folders = System.IO.Directory.GetDirectories(@"C:\My Sample Path\","*", System.IO.SearchOption.AllDirectories);
Posted by: Guest on October-30-2020
1

c# get folder path from file path

Path.GetDirectoryName(filename);
Posted by: Guest on June-02-2021

C# Answers by Framework

Browse Popular Code Answers by Language