1 /* 2 * List objects in a filesystem. 3 * 4 * Copyright (C) 2019, 2022 Paul Boddie <paul@boddie.org.uk> 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License as 8 * published by the Free Software Foundation; either version 2 of 9 * the License, or (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, 19 * Boston, MA 02110-1301, USA 20 */ 21 22 #include <stdio.h> 23 24 #include <ext2fs/ext2fs.h> 25 26 #include "format.h" 27 #include "image.h" 28 #include "session.h" 29 #include "utils.h" 30 31 32 33 /* List objects in the filesystem image. */ 34 35 int list(ext2_filsys fs, int argc, char *argv[]) 36 { 37 int i; 38 char *path; 39 40 for (i = 0; i < argc; i++) 41 { 42 path = argv[i]; 43 44 /* Emit each object. */ 45 46 puts(path); 47 48 /* List individual files or directories. */ 49 50 if (utils_list_dir(fs, path)) 51 { 52 fprintf(stderr, "Failed to list object: %s\n", path); 53 return 1; 54 } 55 } 56 57 return 0; 58 } 59 60 /* vim: tabstop=4 expandtab shiftwidth=4 61 */