3

I am stuck at this since very long and not getting any proper solution for it. I am using jcifs and samba to access shared folder from my windows Pc. Now I want to play the video file which I am getting from the shared folder. I have searched with every keyword but not getting anything what to do and how to do.

Till now I have seen these links:

None of these were found promising.

Then I searched more for it and I found this :

This is my code to get the files from my windows shared folder

            String ip = "192.108.0.00";
            String username = "test";
            String sharedFolder = "andsyyy/";

            String path = "smb://" + ip + "/" + sharedFolder;
            NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication("", username, null);
            SmbFile sfile = new SmbFile(path, auth);
            String[] files = sfile.list();
             PATH = sfile.getPath();// returns path of folder

            for (String fileName : files) {
                Log.e("log_tag", "Fisier: " + fileName);

                abc = fileName;
            }

        } catch (Exception ex) {
            // TODO: handle exception
            z = ex.getMessage();
        }
        return z;
    }
Community
  • 1
  • 1
Android Geek
  • 598
  • 1
  • 5
  • 20

0 Answers0