ฉันต้องการทดสอบสตริงที่มีเส้นทางไปยังไฟล์เพื่อการมีอยู่ของไฟล์นั้น (เช่นการ-e
ทดสอบใน Perl หรือos.path.exists()
ใน Python) ใน C #
ฉันต้องการทดสอบสตริงที่มีเส้นทางไปยังไฟล์เพื่อการมีอยู่ของไฟล์นั้น (เช่นการ-e
ทดสอบใน Perl หรือos.path.exists()
ใน Python) ใน C #
คำตอบ:
ใช้:
File.Exists(path)
MSDN: http://msdn.microsoft.com/en-us/library/system.io.file.exists.aspx
แก้ไข: ใน System.IO
using System.IO;
if (File.Exists(path))
{
Console.WriteLine("file exists");
}
System.IO.File.Exists (เส้นทาง)
ให้เส้นทางแบบเต็มเป็นอินพุต หลีกเลี่ยงเส้นทางที่สัมพันธ์กัน
return File.Exists(FinalPath);