PrintFileTree.java 3.4 KB
Newer Older
1
/*
2
 * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
19 20 21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
22 23 24 25 26 27 28 29 30
 */

import java.nio.file.*;
import java.nio.file.attribute.*;
import java.io.IOException;
import java.util.*;

/**
 * Invokes Files.walkFileTree to traverse a file tree and prints
31 32 33
 * each of the directories and files. The -follow option causes symbolic
 * links to be followed and the -printCycles option will print links
 * where the target of the link is an ancestor directory.
34 35 36 37 38 39
 */

public class PrintFileTree {

    public static void main(String[] args) throws Exception {
        boolean followLinks = false;
40 41 42 43 44 45 46 47 48 49
        boolean printCycles = false;
        int i = 0;
        while (i < (args.length-1)) {
            switch (args[i]) {
                case "-follow"      : followLinks = true; break;
                case "-printCycles" : printCycles = true;  break;
                default:
                    throw new RuntimeException(args[i] + " not recognized");
            }
            i++;
50
        }
51
        Path dir = Paths.get(args[i]);
52 53 54 55 56

        Set<FileVisitOption> options = new HashSet<FileVisitOption>();
        if (followLinks)
            options.add(FileVisitOption.FOLLOW_LINKS);

57
        final boolean reportCycles = printCycles;
58
        Files.walkFileTree(dir, options, Integer.MAX_VALUE, new FileVisitor<FileRef>() {
59 60
            @Override
            public FileVisitResult preVisitDirectory(FileRef dir, BasicFileAttributes attrs) {
61 62 63
                System.out.println(dir);
                return FileVisitResult.CONTINUE;
            }
64
            @Override
65
            public FileVisitResult visitFile(FileRef file, BasicFileAttributes attrs) {
66 67
                if (!attrs.isDirectory() || reportCycles)
                    System.out.println(file);
68 69
                return FileVisitResult.CONTINUE;
            }
70 71 72 73 74 75
            @Override
            public FileVisitResult postVisitDirectory(FileRef dir, IOException exc)
                throws IOException
            {
                if (exc != null)
                    throw exc;
76 77
                return FileVisitResult.CONTINUE;
            }
78 79 80 81 82 83 84 85 86
            @Override
            public FileVisitResult visitFileFailed(FileRef file, IOException exc)
                throws IOException
            {
                if (reportCycles && (exc instanceof FileSystemLoopException)) {
                    System.out.println(file);
                    return FileVisitResult.CONTINUE;
                }
                throw exc;
87 88 89 90
            }
        });
    }
}