最新ルールに従う様に
author諏訪子 <suwako@076.moe>
Sat, 3 Feb 2024 10:37:46 +0000 (19:37 +0900)
committer諏訪子 <suwako@076.moe>
Sat, 3 Feb 2024 10:37:46 +0000 (19:37 +0900)
listpass.c

index 93429e837fc2698c065728168730f55d2d76e3c8..0b18a6fd9361194350d483f74d2f1b39ebc200ae 100644 (file)
@@ -18,37 +18,37 @@ void listpass(char* basePath, int level) {
   }
 
   while ((entry = readdir(dir)) != NULL) {
-    if (strcmp(entry->d_name, ".") != 0 && strcmp(entry->d_name, "..") != 0) {
-      char path[1000];
-      int needed = snprintf(path, sizeof(path), "%s/%s", basePath, entry->d_name);
-      if (needed >= (int)sizeof(path) || needed < 0) {
-        if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Error: Path is too long, or failed to getting lenth");
-        else perror("エラー:パスが長すぎる、又は長さを受取に失敗");
-        continue;
-      }
-
-      struct stat statbuf;
-      if (stat(path, &statbuf) == -1) {
-        if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to reading file status");
-        else perror("ファイル状況を読込に失敗");
-        continue;
-      }
-
-      for (int i = 0; i < level; i++) {
-        printf("    ");
-      }
-
-      if (S_ISDIR(statbuf.st_mode)) {
-        printf("|-- %s\n", entry->d_name);
-        listpass(path, level + 1);
-      } else if (S_ISREG(statbuf.st_mode)) {
-        char* filename = entry->d_name;
-        char* ext = strstr(filename, ".gpg");
-        if (ext) {
-          *ext = '\0';
-        }
-        printf("|-- %s\n", filename);
-      }
+    if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) {
+      continue;
+    }
+
+    char path[1000];
+    int needed = snprintf(path, sizeof(path), "%s/%s", basePath, entry->d_name);
+    if (needed >= (int)sizeof(path) || needed < 0) {
+      if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Error: Path is too long, or failed to getting lenth");
+      else perror("エラー:パスが長すぎる、又は長さを受取に失敗");
+      continue;
+    }
+
+    struct stat statbuf;
+    if (stat(path, &statbuf) == -1) {
+      if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to reading file status");
+      else perror("ファイル状況を読込に失敗");
+      continue;
+    }
+
+    for (int i = 0; i < level; i++) {
+      printf("    ");
+    }
+
+    if (S_ISDIR(statbuf.st_mode)) {
+      printf("|-- %s\n", entry->d_name);
+      listpass(path, level + 1);
+    } else if (S_ISREG(statbuf.st_mode)) {
+      char* filename = entry->d_name;
+      char* ext = strstr(filename, ".gpg");
+      if (ext) *ext = '\0';
+      printf("|-- %s\n", filename);
     }
   }