Разместите нашу кнопку!

Новые статьи:

Programming articles

Создание сайтов на шаблонах

Множество вариантов работы с графикой на канве

Шифруем файл с помощью другого файла

Перехват API функций - Основы

Как сделать действительно хороший сайт

Создание почтового клиента в Delphi 7

Применение паскаля для решения геометрических задач

Управление windows с помощью Delphi

Создание wap сайта

Операционная система unix, термины и понятия

SQL враг или друг

Возникновение и первая редакция ОС UNIX

Оптимизация проекта в Delphi

Ресурсы, зачем нужны ресурсы

Термины программистов 20 века

Советы по созданию собственного сайта с нуля

Шифруем файл с помощью пароля

Фракталы - геометрия природы

Crypt - Delphi программа для шифрования

Рассылка, зачем она нужна и как ее организовать?

Учебник по C++ для начинающих программистов

Уроки для изучения ассемблера

Загадочный тип PCHAR

Средства по созданию сайтов

Операторы преобразования классов is и as

Borland Developer studio 2006. Всё в одном

Создание базы данных в Delphi, без сторонних БД


Software engineering articles



FileSetAttr

устанавливает атрибуты файла

|| function FileSetAttr ( const FileName : string; Attributes : Integer; ) : Integer;

Описание:

    Delphi функция FileSetAttr устанавливает атрибуты определенного файла. Также можно изменять атрибуты файла.

    Следующими значениями integer возможна установка атрибутов: 


    faReadOnly : 1 : файл только для чтения. 
    faHidden : 2 : скрытый файл. 
    faSysFile : 4 : системный файл. 
    faVolumeID : 8 : ФАЙЛЫ Объема ID. 
    faDirectory : 16 : Файлы Директория. 
    faArchive : 32 : Файлы Архива. 
    faSymLink : 64 : СИМВОЛИЧЕСКАЯ связь.

    Возвращённая величина Integer является нулем, если установка атрибутов была успешна, в противном случае она содержит код ошибки.

Пример кода:

var
   fileName : string;
   myFile : TextFile;

   attrs : Integer;

begin
   // Try to open a text file for writing to
   fileName := 'ATestFile.txt';
   AssignFile(myFile, fileName);
   ReWrite(myFile);

   // Write to the file
   Write(myFile, 'Hello World');

   // Close the file
   CloseFile(myFile);

   // Make the file read only and system
   if FileSetAttr(fileName, faReadOnly or faSysFile) > 0
   then ShowMessage('File made into a read only system file')
   else ShowMessage('File attribute change failed');

   // Get the file attributes
   attrs := FileGetAttr(fileName);

   // Display these attributes
   if attrs and faReadOnly > 0
   then ShowMessage('File is read only')
   else ShowMessage('File is not read only');

   if attrs and faHidden > 0
   then ShowMessage('File is hidden')
   else ShowMessage('File is not hidden');

   if attrs and faSysFile > 0
   then ShowMessage('File is a system file')
   else ShowMessage('File is not a system file');

   if attrs and faVolumeID > 0
   then ShowMessage('File is a volume ID')
   else ShowMessage('File is not a volume ID');

   if attrs and faDirectory > 0
   then ShowMessage('File is a directory')
   else ShowMessage('File is not a directory');

   if attrs and faArchive > 0
   then ShowMessage('File is archived')
   else ShowMessage('File is not archived');

   if attrs and faSymLink > 0
   then ShowMessage('File is a symbolic link')
   else ShowMessage('File is not a symbolic link');
end;

Результат выполнения:

File made into a read only system file
File is read only
File is not hidden
File is a system file
File is not a Volume ID
File is not a directory
File is not archived
File is not a symbolic link