FTZZ

File Tree Fuzzer creates a pseudo-random directory hierarchy filled with some number of files.

Installation

Use prebuilt binaries

Binaries for a number of platforms are available on the release page.

Build from source

console,ignore $ cargo +nightly install ftzz

To install cargo, follow these instructions.

Usage

Generate a reproducibly random tree in the current directory with approximately 1 million files:

```console $ ftzz g ./simple -n 1M About 1,000,000 files will be generated in approximately 1,000 directories distributed across a tree of maximum depth 5 where each directory contains approximately 4 other directories. Created 1,002,953 files across 1,193 directories.

```

Generate exactly 1 million files:

```console $ ftzz g ./exact -en 1M Exactly 1,000,000 files will be generated in approximately 1,000 directories distributed across a tree of maximum depth 5 where each directory contains approximately 4 other directories. Created 1,000,000 files across 1,193 directories.

```

Generate ~10_000 files with ~1 MB of random data spread across them:

```console $ ftzz g ./with_data -n 10K -b 1M About 10,000 files will be generated in approximately 1,000 directories distributed across a tree of maximum depth 5 where each directory contains approximately 4 other directories. Each file will contain approximately 100 bytes of random data. Created 9,419 files (929.4 KB) across 1,138 directories.

```

Because FTZZ creates reproducible outputs, the generated directory will always have the same structure given the same inputs. To generate variations on a structure with the same parameters, change the starting seed:

```console $ ftzz g ./unseeded -n 100 About 100 files will be generated in approximately 100 directories distributed across a tree of maximum depth 5 where each directory contains approximately 3 other directories. Created 32 files across 214 directories.

$ ftzz g ./seeded -n 100 --seed 42 # Or $RANDOM About 100 files will be generated in approximately 100 directories distributed across a tree of maximum depth 5 where each directory contains approximately 3 other directories. Created 78 files across 59 directories.

```

Other parameters can be found in the built-in docs:

```console $ ftzz help generate Generate a random directory hierarchy with some number of files

A pseudo-random directory hierarchy will be generated (seeded by this command's input parameters) containing approximately the target number of files. The exact configuration of files and directories in the hierarchy is probabilistically determined to mostly match the specified parameters.

Generated files and directories are named using monotonically increasing numbers, where files are named n and directories are named n.dir for a given natural number n.

By default, generated files are empty, but random data can be used as the file contents with the total-bytes option.

Usage: ftzz[EXE] generate [OPTIONS] --files

Arguments: The directory in which to generate files

      The directory will be created if it does not exist.

Options: -n, --files The number of files to generate

      Note: this value is probabilistically respected, meaning any number of files may be
      generated so long as we attempt to get close to N.

  --files-exact
      Whether or not to generate exactly N files

-b, --total-bytes The total amount of random data to be distributed across the generated files

      Note: this value is probabilistically respected, meaning any amount of data may be
      generated so long as we attempt to get close to N.

      [default: 0]

  --fill-byte <FILL_BYTE>
      Specify a specific fill byte to be used instead of deterministically random data

      This can be used to improve compression ratios of the generated files.

  --bytes-exact
      Whether or not to generate exactly N bytes

-e, --exact Whether or not to generate exactly N files and bytes

-d, --max-depth The maximum directory tree depth

      [default: 5]

-r, --ftd-ratio The number of files to generate per directory (default: files / 1000)

      Note: this value is probabilistically respected, meaning not all directories will have N
      files).

  --seed <SEED>
      Change the PRNG's starting seed

      For example, you can use bash's `$RANDOM` function.

      [default: 0]

-h, --help Print help (use -h for a summary)

-q, --quiet... Less output per occurrence

-v, --verbose... More output per occurrence

```