#include <Filectrl.hpp> void __fastcall TForm1::Button1Click(TObject *Sender) { //这个路径是否存在 if (!DirectoryExists("c:\\myfile")) { if (!CreateDir("C:\\myfile")) throw Exception("不能创建文件."); }//如果创建失败 if (!CreateDir("C:\\myfile")) throw Exception("已存在此文件路径,不能再创建!"); }