Questions tagged [shared-file]
24 questions
0
votes
1 answer
Java. Update (rewrite) shared file
I have a shared file with access through network. This file has direct link and being downloaded almost permanently, so it's always locked for reading. But sometimes I need to update this file with new data using java code, but I can't do it.
I…

MichaelD
- 1
- 1
0
votes
1 answer
Error source file is not valid UTF-8 when sharing project code from Ubuntu host to macOS guest
I have a Ubuntu host and a vmware macOS guest. When I share a project code from Ubuntu, the code cannot be built in macOS because of error source file is not valid UTF-8. We can use any example of Qt/QML to reproduce this error. I think this is…

aviit
- 1,957
- 1
- 27
- 50
0
votes
0 answers
Processes who read and write from/in a shared file in c
I am trying read and write from a shared file between processes. The file has 6 lines that are meant to be read and then a new line should be inserted by one process. To be more precise i want my reading process to be done simultaneously but the…

Foivos Allayiotis
- 109
- 8
0
votes
1 answer
Programmatic way to get open files info similar to Computer Management\Shared Folders\Open Files? (Server 2012R2)
Trying to track open files\locks on a server due to application issues. I can use Computer Management\Shared Folders\Open Files and see this data. The fields I get are:
Open File, Accessed By, Type, # Locks, Open Mode
Using this tool, I can export…

CHUCK-
- 1
- 3
0
votes
1 answer
Excel macro-enabled workbook corruption
I have spent hours searching for an answer to this and, whilst there are many posts about recovering corrupted files, there are very few about preventing them and none that fit my situation.
My team at my work used to use an old Excel 2003 sheet to…

Haggishunt56
- 39
- 1
- 9
0
votes
0 answers
Access images from network drive in HTML image tag
I have around 1000 images available in network drive
\\imagestore\appimages\{imageName}
I want to show all images on a web page (html) which is also hosted in same network.
When I hit image URL e.g
\\imagestore\appimages\image1.jpg
it shows me…

Beelal Ahmed
- 51
- 1
- 8
0
votes
1 answer
How to load local shared swf file on site?
I have a local site in my system. The site index page contains an object and embed tag to load a SWF file.
I have a shared folder in my local system. This folder contains number of SWF files. It can access by other machine using my system IP path.
I…

sureshunivers
- 1,753
- 12
- 27
-1
votes
1 answer
How to create an int file
I am trying to create a shared file, which has to be int.
int f;
However, when I reach
if ((fstat(f, &stbuf) != 0) || (!S_ISREG(stbuf.st_mode)))
It gives me an error. The file must contain a string like:
abcd
My guess is the following, but it…

Eduardo Ramos
- 91
- 13
-2
votes
2 answers
How to read shared file from Ubuntu/Samba using C#?
I have shared folder on ubuntu/samba server of my network.
I am running my c# code on Vista , so How can i read file shared on ubuntu/samba server ?
My code :
String errorLogFile = @"\\\\198.168.0.2\\sharedfolder\myfile.wmv";
//throws excetion…

Pranay Rana
- 175,020
- 35
- 237
- 263