"Для разработчиков", "Серверные скрипты", "Описание функций", "Файлы", "FileExists".
Функция для проверки существования файла по указанному пути.
function FileExists(sFileName: string): boolean;
Параметр |
Тип |
Значение |
---|---|---|
sFileName |
string |
имя файла и полный путь к нему. |
True, если файл существует, false — если такой файл не найден.
begin
if FileExists('c:\swapfile.sys') then mLogScript('Windows swap file is located on the drive C:', '')
else mLogScript('Windows swap file is not found on the drive C:', '');
end.
[14:40:45] (Log "FileExists"): Windows swap file is located on the drive C:
[14:40:45] (Run "FileExists"): Время выполнения скрипта: 5 мс
[14:40:45] (Run "FileExists"): Скрипт выполнен успешно.