file_attributes

Gives you the attributes of a file.

Syntax:

file_attributes(fname, attr);


Argument Description
fname The name of the file to check.
attr The attributes to check for.


Returns: Boolean.


Description

You can use this function to check the attributes of a given file. You can add up the following constants to see the type of files you want:

NOTE: This is a Windows only function.


Example:

if !file_attributes(file, fa_hidden) file_delete(file);

This would check a file to see if it is hidden or not, and if not it is deleted.


Back: File System Functions
Next: filename_name
© Copyright YoYo Games Ltd. 2018 All Rights Reserved