Uploaded image for project: 'Commons CLI'
  1. Commons CLI
  2. CLI-274

Option parser type EXISTING_FILE_VALUE not check file existing

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Minor
    • Resolution: Fixed
    • None
    • 1.5
    • Parser
    • None

    Description

      When the user pass option type FileInputStream.class, I think the expected behavior for the return value is the same type, which the user passed.

      Options options = new Options();
      options.addOption(Option.builder("f").hasArg().type(FileInputStream.class).build());
      CommandLine cline = new DefaultParser().parse(options, args);
      FileInputStream file = (FileInputStream) cline.getParsedOptionValue("f"); // it returns "File" object, without check File exist.

      I attach a solution for it:
      https://github.com/schaumb/commons-cli/commit/abfcc8211f529ab75f3b3edd4a827e484109eb0b

      Attachments

        Activity

          People

            britter Benedikt Ritter
            schaumb Béla Schaum
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: