Skip to main content

Path.join()

The Path.join() method joins this path with one or more other paths.

Any gaps in the path (caused by move operations) will be filled-in with a line. If that's not what you want, you should use Path.combine() instead.

Signature

Path path.join(path other)

Examples

Example of the Path.join() method

Notes

  • Path.join() is variadic, so you can pass multiple paths to join
  • You cannot join a closed path to another path