myls fonctionnel

This commit is contained in:
JunkJumper 2020-09-17 10:49:03 +02:00
parent 6084d99ae4
commit 40b1703374

View File

@ -4,7 +4,7 @@
* @ Copyright: Creative Common 4.0 (CC BY 4.0) * @ Copyright: Creative Common 4.0 (CC BY 4.0)
* @ Create Time: 04-09-2020 11:43:11 * @ Create Time: 04-09-2020 11:43:11
* @ Modified by: JunkJumper * @ Modified by: JunkJumper
* @ Modified time: 10-09-2020 12:15:38 * @ Modified time: 17-09-2020 10:25:25
* @ Description: code c produisant le même résultat qu'un ls. * @ Description: code c produisant le même résultat qu'un ls.
*/ */
@ -35,7 +35,7 @@ int main(int argc, char *argv[])
dir = opendir(argv[1]); dir = opendir(argv[1]);
chdir(argv[1]); chdir(argv[1]);
entry = readdir(dir); entry = readdir(dir);
printf("%-10s %-10s %-5s %-15s %-15s %-8s %-13s %-30s \n", "Inode", "Permission", "Type", "Propriétaire", "Group Name", "Size", "Time", "Nom de Fichier"); printf("%-10s %-3s %-5s %-15s %-15s %-8s %-13s %-30s \n", "Inode", "RWX", "Type", "Propriétaire", "Group Name", "Size", "Time", "Nom de Fichier");
while(entry != NULL) { while(entry != NULL) {
lesAtt = stat(entry->d_name, &attribut); lesAtt = stat(entry->d_name, &attribut);
@ -43,7 +43,7 @@ int main(int argc, char *argv[])
perror("Échec stat"); perror("Échec stat");
exit(2); exit(2);
} }
printf("%-10d %-10d %-5d %-15d %-15d %-8d %-13d %-30s\n", (int)entry->d_ino, attribut.st_mode, entry->d_type, attribut.st_uid, attribut.st_gid, attribut.st_size,attribut.st_mtime, entry->d_name); printf("%-10d %-3o %-5d %-15d %-15d %-8d %-13d %-30s\n", (int)entry->d_ino, attribut.st_mode&0777, entry->d_type, attribut.st_uid, attribut.st_gid, attribut.st_size,attribut.st_mtime, entry->d_name);
entry = readdir(dir); entry = readdir(dir);
} }
closedir(dir); closedir(dir);