Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple directories in -Djava.library.path

People also ask

What is multi directory?

Multiple Directories. Directorist Multi Directory lets you create multiple directory types(post type) within the same domain with different functionalities for each directory type.

How do I open multiple directories in Linux?

You can create directories one by one with mkdir, but this can be time-consuming. To avoid that, you can run a single mkdir command to create multiple directories at once. To do so, use the curly brackets {} with mkdir and state the directory names, separated by a comma.

How do I make multiple folders and subfolders in one go?

Instead, you can create multiple folders at once using the Command Prompt, PowerShell, or a batch file. These apps save you from the task of right-clicking > New Folder or using Ctrl+Shift+N to make a new folder, which is tiresome if you have to make several of them.


On Linux, use colon : as separator (as you will do with the classpath option) as in:

-Djava.library.path=/opt/hdf-java/build/bin:/opt/opencv-2.4.10/build/lib

Use the platform's File.pathSeparator, i.e. ; on Windows and : on *nix, to separate directories, just like you would separate the directories in the classpath.

e.g. Windows:

-Djava.library.path=C:/dir1;C:/dir2

or *nix:

-Djava.library.path=/dir1:/dir2