Reputation: 424
I tried Googling but was unable to come up with any results. What I'm looking for is a basic explanation or tutorial on howto navigate a Unix server with Java.
I have several Java programs that I would like to run directly on my server, however I just have no idea how to let these programs go to certain directories, or scan certain files, etc.
How exactly can I use Java with Unix?
Upvotes: 0
Views: 1662
Reputation: 45576
To make your life easier use Apache commons-io FileUtils -> http://commons.apache.org/io/api-release/org/apache/commons/io/FileUtils.html
Here is the project home page -> http://commons.apache.org/io/
Upvotes: 1