C++ Builder中FileExists函数的使用方法
时间: 2024-05-12 09:15:06 浏览: 237
Manipulating Files_ManipulatingFiles_C++builder_
在C++ Builder中,FileExists函数用于判断文件是否存在。其函数原型如下:
```cpp
bool __fastcall FileExists(const System::UnicodeString FileName);
```
其中,FileName为需要判断是否存在的文件名字符串。
使用方法如下:
```cpp
if (FileExists("example.txt"))
{
ShowMessage("文件存在!");
}
else
{
ShowMessage("文件不存在!");
}
```
以上代码会判断当前目录下是否存在example.txt文件,如果存在则弹出“文件存在!”的提示框,否则弹出“文件不存在!”的提示框。
阅读全文