Answers for "how to check an path has a file c#"

C#
1

how to check file path is valid in c#

string path="D://files"
if (!Directory.Exists(path))
                {
                    MessageBox.Show("Path is not valid please check if this path exists or not","Path Not Found", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
Posted by: Guest on March-08-2021
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

Code answers related to "how to check an path has a file c#"

C# Answers by Framework

Browse Popular Code Answers by Language