Questions tagged [windows-share]

50 questions
12
votes
7 answers

JCIFS: file retrieval is too slow to be usable

I was just testing JCIFS for accessing Windows shares. It is very slow to the point of being completely unusable. import jcifs.smb.*; class First { public static void main(String[] args) throws Exception { try { …
Xolve
  • 22,298
  • 21
  • 77
  • 125
11
votes
1 answer

Using Windows SMB shares from Kubernetes deployment app

We are migrating legacy java and .net applications from on-premises VMs to an on-premises Kubernetes cluster. Many of these applications make use of windows file shares to transfer files from and to other existing systems. Deploying to Kubernetes…
8
votes
2 answers

Write a file to a remote location using Java with network path or drive?

I have shared a folder on my server using Windows sharing. On another computer, where I am running my code on, I have mapped a network drive pointing to that folder. In my code, I transfer files from my local computer to my server every now and…
ohseekay
  • 795
  • 3
  • 20
  • 37
6
votes
1 answer

Java, JFileChooser & Windows Network Shares WITH Password Protection

I need to present to the user or my application a dialogue in which that point to a particular file so naturally the easiest choice is to use a JFileChooser. However the file that needs to be selected is on a Windows network drive/share but it is…
D-Dᴙum
  • 7,689
  • 8
  • 58
  • 97
6
votes
2 answers

Golang: Access a Windows share (from Linux application)

Is there a proper way to connect to a Windows share, such as \windowspc\c$\myshare, from a Go application that is compiled and running on a Linux device? The share will require credentials to save a file to the target UNC path. Is there a best…
Bart Silverstrim
  • 3,445
  • 6
  • 34
  • 44
6
votes
3 answers

Access Windows Share under Network Service account

I have two computers with Windows Server 2003. One computer has some shared folders on the network, and the other has a Windows Service (written in C#, running under the Network Service account) that needs to access those shared folders. The…
Phil
  • 6,561
  • 4
  • 44
  • 69
5
votes
3 answers

Accessing a Windows Share using PHP

I need to access an Excel file on a Windows Share using PHP but seem to be running into what looks like an authentication issue. I'm using PHP-ExcelReader to open and read the file. Works fine on my local machine but the server I'm putting it on…
Ciaran
  • 1,878
  • 5
  • 18
  • 31
4
votes
1 answer

Python cannot access file using smb client

Using this library: https://pypi.python.org/pypi/PySmbClient I am trying to access a file from my Ubuntu machine via a smb share from a windows machine. The share is up and running fine and I can see the files but, when I try to access the files…
Jacob
  • 3,580
  • 22
  • 82
  • 146
4
votes
1 answer

Python cannot access a Windows shared drive, even though other applications can

I have three computers with seemingly identical Windows (all installed by IT-department based on same image) and WinPython installations. One of the computers cannot access a shared drive through Python, while the others can. The shared drive can be…
kfyhn
  • 63
  • 1
  • 6
3
votes
1 answer

Checkout from a windows share

I have created a repository in a shared folder. Usually I simply mapped a drive and checked out the repository using a file URL: svn checkout file:///T:\MyRepository . where T: is \\mySharedFolder Is there some way how to specify in a url directly…
Timofey
  • 2,478
  • 3
  • 37
  • 53
3
votes
1 answer

Only get folders using smbclient

I'm struggling to only retrieve subfolders from a remote windows share with the following directory structure using smbclient. Is there a way of issuing a command to only get folders? The command I have so far is: smbclient //$host/$share…
illumi
  • 274
  • 5
  • 17
3
votes
4 answers

Trying to get a Windows Service to run an executable on a shared drive

I have c# that will run in a windows service. I'm trying to use the Process and ProcessStartInfo classes to run an executable. If the executable is on the local drive, no problem. However, I need to run an executable on a shared drive. I've…
Brett McCann
  • 2,469
  • 2
  • 27
  • 44
2
votes
1 answer

Accessing shared folder over a network in windows service

I have a windows service that needs to access the files (sometime modification also) from a network (shared folder). I get the file name from an XML like, I made a log file which always shows…
Shebin
  • 3,310
  • 2
  • 24
  • 27
2
votes
1 answer

Mounting a Windows Share into Kubernetes pods

We are migrating some windows components (.net 4.5) to Linux containers (.net core). Existing system is a file processor, which watches a shared location and processes file from there. We can't force existing system to start dropping file at some…
2
votes
0 answers

Cross-browser URL to windows share

Possible Duplicate: Firefox Links to local or network pages do not work I want my servers location (SharePoint) wiki page to display server names and links to windows shares located there, i.e. \\myserver1 This works in IE:
abatishchev
  • 98,240
  • 88
  • 296
  • 433
1
2 3 4