Answers for ".net get directory path from fullpath"

C#
-2

c# get folder of full ilepath

string fileName = @"test.txt";
    string currentDirectory = Directory.GetCurrentDirectory();
    string[] fullFilePath = Directory.GetFiles(currentDirectory, filename, SearchOption.AllDirectories);
Posted by: Guest on September-08-2020

Code answers related to ".net get directory path from fullpath"

C# Answers by Framework

Browse Popular Code Answers by Language