smb

What is Zone Identifier? [closed]

夙愿已清 提交于 2019-11-27 10:40:04
问题 I often saw some files which named 'blabla.exe:Zone.Identifier' monitoring I/O with Process Monitor. The files could be seen network-drive. What is Zone.Identifier? What does the colon mean in the filename. Is the colon related the file's extended attributes? 回答1: The text after the colon is an identifier for an "Alternate Data Stream". ADS is used to store meta-information about the file. For example, the Zone identifier stores whether the file was downloaded from the internet. Some specific

Android ServerSocket programming with jCIFS streaming files

ⅰ亾dé卋堺 提交于 2019-11-27 06:50:50
I've got a bit of an issue and I've been asking regarding it quite a few times, but I think I'm one step closer now, so hopefully someone can help me with the rest. My previous questions: Connect to NAS device from Android How to open files in Android with default viewer using jCIFS Put simply - I want to create an application that: Can connect to a NAS device using jCIFS Is capable of launching files in the default viewer - i.e. a video in the video player The first part is relatively easy and I've already done that, but the second part is what's troubling me and what I've asked about a few

SMB/samba support on iOS?

会有一股神秘感。 提交于 2019-11-27 03:27:05
问题 I check iOS document and also google it for a while and get the impression that iOS does not support samba (although there is a samba app for jailbreak iPhone). But then how do the app FileBrowser achieves that? Does that mean they implemented samba support by their own ? I also find there is an open source library called tango that provides limited support for samba. So my question is that the best samba support I can get ? 回答1: I spent quite some time in implementing my own SMB client so I

access to file using Java with Samba JCIFS

牧云@^-^@ 提交于 2019-11-26 22:02:41
I have a question about accessing file with Samba JCIFS. So there is a server I want to access, let's call it server.unv.edu and the workgroup is WKGRP. there is a share in this server: \\server.unv.edu\pcb$ the way I am trying to access to the server is : public class SMBAuthenticator extends NtlmAuthenticator{ private String username = "username"; private String password = "password"; private String domain = "smb://server.unv.edu/WKGRP/"; public SMBAuthenticator(){ NtlmAuthenticator.setDefault(this); } and public class SMBConnection{ public String urlString = "smb://server.unv.edu/pcb$/path

Android ServerSocket programming with jCIFS streaming files

穿精又带淫゛_ 提交于 2019-11-26 12:12:14
问题 I\'ve got a bit of an issue and I\'ve been asking regarding it quite a few times, but I think I\'m one step closer now, so hopefully someone can help me with the rest. My previous questions: Connect to NAS device from Android How to open files in Android with default viewer using jCIFS Put simply - I want to create an application that: Can connect to a NAS device using jCIFS Is capable of launching files in the default viewer - i.e. a video in the video player The first part is relatively