Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
497 views

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 ...
Hakuna0001's user avatar
1 vote
1 answer
102 views

I have file system like this: -- api -> api.go -- styles -> style1.css -> style2.css -> ... -- scripts -> script1.js -> script2.js -> ... -- ...
Mudia's user avatar
  • 57
2 votes
0 answers
81 views

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(&...
ccQpein's user avatar
  • 825
0 votes
1 answer
83 views

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 ...
Spike Colman's user avatar
0 votes
0 answers
219 views

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 ...
Gelzone's user avatar
  • 19
0 votes
0 answers
198 views

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 ...
Tyler's user avatar
  • 333
0 votes
0 answers
192 views

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 ...
rockets4all's user avatar
1 vote
1 answer
1k views

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/ { ...
Philip F.'s user avatar
  • 1,257
0 votes
0 answers
177 views

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 ...
tommyokie's user avatar
1 vote
0 answers
847 views

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 ...
takeitback's user avatar
0 votes
2 answers
2k views

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 ...
Uvindu Dassanayaka's user avatar
1 vote
1 answer
640 views

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 ...
user826955's user avatar
  • 3,246
0 votes
0 answers
114 views

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 ...
Muhammed Yahya Varlık's user avatar
0 votes
1 answer
409 views

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 ...
Tommy's user avatar
  • 1
1 vote
1 answer
620 views

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 ...
Peter's user avatar
  • 489
0 votes
1 answer
180 views

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 ...
AndreaTaroni86's user avatar
1 vote
1 answer
974 views

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 ...
randomsysadmin's user avatar
0 votes
0 answers
459 views

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 ...
user2033412's user avatar
  • 2,147
1 vote
1 answer
604 views

I have created a simple FileServer using GoLang package main import ( "log" "net/http" ) func loggingHandler(h http.Handler) http.Handler { return http.HandlerFunc(...
Miszmo's user avatar
  • 41
0 votes
0 answers
67 views

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 ...
aIDserse's user avatar
  • 131
1 vote
1 answer
464 views

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 ...
santosh baruah's user avatar
0 votes
0 answers
586 views

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 ...
Codrut's user avatar
  • 362
0 votes
1 answer
745 views

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, ...
jnelson's user avatar
  • 71
0 votes
0 answers
36 views

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 ...
doej1367's user avatar
  • 341
1 vote
1 answer
249 views

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 ...
The Terminal's user avatar

1
2 3 4 5 6