I have a FAT filesystem mounted in Linux with the vfat driver. I want to know how I would be able to read the vfat attributes of a file such as ...
This is a follow-up to my other question here: http://stackoverflow.com/questions/1644416/how-to-read-vfat-attributes-of-files-in-linux-using-c -- I saw this struct in linux/msdos_fs.h:
struct msdos_dir_entry { __u8 name[8],ext[3]; /* name and extension */ ...
I am working in C not in CPP and want to change the attributes of a executable file to hidden, read only, executable. I also want to change file's permission using ...