All, Forgive me I am not familiar with the Linux. I am trying to read all the files of a network share folder which is located in either Windows or Linux system.
Currently I just made it work for the case of Windows by below code.
networkShareFolder="\\\\10.50.90.18\\ITS Tool\\xml\\";//It is a windows Network share path.
File[] files = new File(networkShareFolder).listFiles();
But When I deploy my application to the Linux system and run it. It just told me can not get any files from the specified networkShareFolder
;
So I tried to type the path \\10.50.90.18
in the File explorer of Linux like what I did in the windows. To see if the path can be reached from the Linux system. But it just told me Can't locate the \\10.50.90.18
. But I am sure the IP can be ping from the Linux.
So my questions are
- Why
\\10.50.90.18
can't be accessed in Linux .But can be accessed in Windows. (I am sure their IP are all 10.50.90.*) - What is the best way to access the network share folder from windows or linux ?
Thanks.