0

I want to use this FileUtils.

But I can't find how. I can not import the package of it. I searched for a .jar or library, which i can import to my Eclipse.

I need the FileUtils to create hardlinks.

I hope someone can help me.

Ilya Kogan
  • 20,368
  • 15
  • 78
  • 134
TheTanic
  • 989
  • 10
  • 22

1 Answers1

0

FileUtils is from Apache CommonsIO. You need to download it from here.

Now right click your project, select Properties, then click Java Build Path, then click Libraries tab. Now you should see a button Add External Jars at the right side. Click on it, and add the CommonsIO jar.
You are done!

Jeremy
  • 638
  • 1
  • 7
  • 17