วิธีที่สวยงามในการย้ายไฟล์ของคุณไปยังไดเรกทอรีที่ไม่มีอยู่คือการสร้างส่วนขยายต่อไปนี้ไปยังคลาส FileInfo ดั้งเดิม:
public static class FileInfoExtension
{
//second parameter is need to avoid collision with native MoveTo
public static void MoveTo(this FileInfo file, string destination, bool autoCreateDirectory) {
if (autoCreateDirectory)
{
var destinationDirectory = new DirectoryInfo(Path.GetDirectoryName(destination));
if (!destinationDirectory.Exists)
destinationDirectory.Create();
}
file.MoveTo(destination);
}
}
จากนั้นใช้ส่วนขยาย MoveTo ใหม่:
using <namespace of FileInfoExtension>;
...
new FileInfo("some path")
.MoveTo("target path",true);
ตรวจสอบวิธีการขยายเอกสาร