C# 查找指定文件是否存在
C#查找相对路径的根目录下指定文件是否存在比如user.ini这是我根据回答写的类其中的指定路径filePath如何用?classSearchFile//查找指定的文件在...
C# 查找相对路径的根目录下指定文件是否存在
比如user.ini
这是我根据回答写的类 其中的指定路径filePath如何用?
class SearchFile //查找指定的文件 在指定目录下是否存在!
{
private string filePath;
private string fileName;
private void SearchFile(string Path, string Name)
{
filePath = Path;
fileName = Name;
if (System.IO.File.Exists(fileName))
{
return (true);
Console.WriteLine("存在");
}
else
{
return (false);
}
}
} 展开
比如user.ini
这是我根据回答写的类 其中的指定路径filePath如何用?
class SearchFile //查找指定的文件 在指定目录下是否存在!
{
private string filePath;
private string fileName;
private void SearchFile(string Path, string Name)
{
filePath = Path;
fileName = Name;
if (System.IO.File.Exists(fileName))
{
return (true);
Console.WriteLine("存在");
}
else
{
return (false);
}
}
} 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询