270 questions
0
votes
1
answer
497
views
Not able to access file server using smbprotocol python library
We have written a script deployed on Azure function which performs some operation on data stored in file server and stores the processed data back to file server. This script was working fine for last ...
1
vote
1
answer
102
views
Trouble serving JavaScript and asset files with Gorilla Mux in Golang
I have file system like this:
-- api
-> api.go
-- styles
-> style1.css
-> style2.css
-> ...
-- scripts
-> script1.js
-> script2.js
-> ...
-- ...
2
votes
0
answers
81
views
Trouble Loading .wasm Files in HTML from a Golang File Server
I'm working on creating a sub-url for my file server in Golang.
The Golang function code I have is:
func main() {
fs := http.FileServer(http.Dir("../../dist/"))
http.Handle(&...
0
votes
1
answer
83
views
Displaying media from another server where the client has no permission (asp.net)
My web page (asp.net) is supposes to show a table of very classified media, and then to open the files in a new windows when clicked.
When I place the media locally on a folder on the IIS server and ...
0
votes
0
answers
219
views
Start python .exe on Windows File Server very slow
My job is about office automation. Make some automated scripts for other teams in the company.
My company use Window File Server to store, backup, share data between each team.
And my team had set up ...
0
votes
0
answers
198
views
How to read all files that are hosted by a file server
Desription
I am using FileServerOptions to host some files.
The EnableDirectoryBrowsing option is enabled so I can view the files through a browser.
I would like to get a list of all the files within ...
0
votes
0
answers
192
views
I have to switch between my laptop and desktop a lot. How can I share the git changes without committing them all?
Due to medical issues I am on my back a lot and have to program from a laptop. I prefer programming on my desktop, but I am forced to bed due to pain quite often. What I want to do is setup a file ...
1
vote
1
answer
1k
views
NGINX does not serve images
NGINX does not serve my images (with extension .jpg or .png) but it serves any other file (e.g. .txt, no extenstion at all).
This is the relevant part in my NGINX-Config:
location /uploads/ {
...
0
votes
0
answers
177
views
Transfrer file from raspberry pi to file server on same network with python
I have a raspberry pi taking pictures, that is connected to the LAN. I want to automatically upload each picture file to a samba ubuntu file server I have on my network, so I can easily view them.
I ...
1
vote
0
answers
847
views
Managing Disk Quotas in Powershell Remotely
I'm trying to eventually create a winform powershell tool that manages disk quotas on a Windows 2016 server from a Windows 10 client workstation. Given that Every single user has at least 2 mapped ...
0
votes
2
answers
2k
views
Speed up file transfer using socket
File transfer using socket stream is too slow. Almost 100kbps. I used the python socket module to make this code. It sends data to the client when the client sends the file name. How can I increase ...
1
vote
1
answer
640
views
Golang fileserver setting content-type differently on linux and macos
I am using the http.FileServer in my web service, and when I try serving a javascript file from it, I will get a content-type header of text/javascript; charset=utf-8 on Linux (debian 11), but ...
0
votes
0
answers
114
views
Kubernetes File Service Not Persist Files
I want to run kubernetes file server but files are deleted. I also tried Digitaloceon and GKE and got the same result.
Everything works fine until the pod is deleted, but when the pod is deleted it ...
0
votes
1
answer
409
views
Access SharePoint Site via File Explorer
IS it Possible to access a SharePoint site via file Explorer as in mapping it as a network folder as i have followed a bits i have seen online to no success.
i know you can sync document library to ...
1
vote
1
answer
620
views
Golang simple http file server concurrent connections limitation on Windows
I am trying to create a fairly simple http file server in Go. Ideally, it should be able to support multiple concurrent file downloads from 2 to 20 clients simultaneously.
I have tried several ...
0
votes
1
answer
180
views
Batch Close opened files of all users except one
Fileserver 2019.
I want to close all opened files except for one user.
for /f "skip=4 tokens=1" %%a in ('net files') do net files %%a /close
Now, I tried to exclude a specific user with its ...
1
vote
1
answer
974
views
Robocopy reporting failed files but not showing in logs
I am running a robocopy script to sync data from an old file server to a new one. Im running into an issue where the log is stating that there's 600+ failed files but the logs don't indicate any ...
0
votes
0
answers
459
views
UseFileServer with wildcard in path
I have wildcards in my API-Routes, like
[HttpGet("api/customers/{wildcard}/add")]
so that I can handle multiple instances of my application and manage the endpoints with a loadbalancer that ...
1
vote
1
answer
604
views
Golang FileServer check progress
I have created a simple FileServer using GoLang
package main
import (
"log"
"net/http"
)
func loggingHandler(h http.Handler) http.Handler {
return http.HandlerFunc(...
0
votes
0
answers
67
views
Print C# returned result on an HTML file
For homework I have to create a C# application that allows you to browse the local filesystem in order to upload files to a server and navigate the filesystem of the local computer and the server
I ...
1
vote
1
answer
464
views
Video Editing and Storing in AWS Cloud
Currently we have numerous video assets in S3 that our Video team needs to edit daily/hourly. Each day they spend hours downloading these assets, editing them, and re uploading them. Is there a way ...
0
votes
0
answers
586
views
How can I host a file server on the web?
I would like to be able to host my own file server so I can acess my files whereever I am. I tried countless tutorials but none worked in the end. The only thing that works is acessing my files on my ...
0
votes
1
answer
745
views
How to use impersonation in Blazor Server Side to access a folder on a File Server
In .NET Framework, using this would let me impersonate a user in Active Directory to gain access to a locked down folder on the file server:
[DllImport("advapi32.dll", SetLastError = true, ...
0
votes
0
answers
36
views
Which error codes can the "NAME ... AS ..." function throw?
Scenario: Multiple PCs running Excel VBA code want to have write access to one Excel file on a server, but only one is allowed win, so I need an isWinner() function.
Code Idea: Every PC trys to rename ...
1
vote
1
answer
249
views
How can I store an image in a fileserver and get the remote URL for react native application
I am using expo for my native application and a firestore database for storage but the thing is I really require a fileserver inside of which I can store an image and get the remote URL and then the ...