Answers for "find path that contains cmd"

C#
1

how to check if a path is a directory or file c#

// get the file attributes for file or directory
FileAttributes attr = File.GetAttributes(@"c:Temp");

if (attr.HasFlag(FileAttributes.Directory))
    MessageBox.Show("Its a directory");
else
    MessageBox.Show("Its a file");
Posted by: Guest on November-20-2020
0

path configuration cmd

setx path "%path%;c:dir1dir2"
Posted by: Guest on March-28-2021

C# Answers by Framework

Browse Popular Code Answers by Language