Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
1k views

When using Java's FileLock, is it ok to let close() to automatically do a lock.release()?

As most should know close() also closes any streams uses. This allows the follow code: BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(...))); ... br.close(); This ...
6
votes
3answers
192 views

In Java, Is there a way to read a file when that file is locked by other thread?

So i used the following to create a lock on a file so that I can edit it exclusively: File file = new File(filename); channel = new RandomAccessFile(file, "rw").getChannel(); lock = ...
5
votes
4answers
170 views

How can my Linux daemon know when a Windows program has stopped writing a file that I access through SAMBA?

I'm developing a system that interfaces with a USPS shipping package called Dazzle. Part of this system includes a monitoring daemon whose purpose is to take tab-separated value files, turn them into ...
5
votes
6answers
3k views

how to best wait for a filelock to release

I have an application where i sometimes need to read from file being written to and as a result being locked. As I have understood from other questions i should catch the IOException and retry until i ...
4
votes
4answers
2k views

FileStream to save file then immediately unlock in .NET?

I have this code that saves a pdf file. FileStream fs = new FileStream(SaveLocation, FileMode.Create); fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length); fs.Flush(); fs.Close(); It ...
4
votes
2answers
616 views

.NET isolated storage file locking throws NRE

So I am trying to lock an isolated storage file in my C# client application, so that multiple copies of my application are not able to access it at the same time. I am using the following syntax: ...
3
votes
2answers
503 views

FileStream with locked file

I am wondering if it's possible to get a readonly FileStream to a locked file? I now get an exception when I try to read the locked file. using (FileStream stream = new FileStream("path", ...
3
votes
1answer
820 views

Java: opening and reading from a file without locking it

I need to be able to mimic 'tail -f' with Java. I'm trying to read a log file as it's being written by another process, but when I open the file to read it, it locks the file and the other process ...
3
votes
1answer
623 views

Problem with Java file locking mechanism (FileLock etc)

I am creating a simple application for opening and editing xml files. These files are located in a local folder accessed by multiple instances of the application. What I want to do is lock each file ...
3
votes
2answers
2k views

Java FileLock for Reading and Writing

I have a process that will be called rather frequently from cron to read a file that has certain move related commands in it. My process needs to read and write to this data file - and keep it locked ...
3
votes
1answer
1k views

Does a StreamReader lock a text file whilst it is in use? Can I prevent this?

Does a StreamReader lock a text file whilst it is reading it? If it does, can I force the StreamReader to work in a "read-only" or "non locking" mode? My workaround would be to copy the file to a ...
3
votes
1answer
1k views

How do I get WPF's DocumentViewer to release its file lock on the source XPS Document?

After showing an XPS file in the WPF DocumentViewer, and closing the DocumentViewer instance, the XPS file is locked and I cannot delete it. I need to release the lock on the XPS file so I can delete ...
3
votes
2answers
3k views

Java file locking and Windows - the lock isn't “absolute”?

I'm trying to lock a file with Java in Windows environment with FileLock and I got an issue : after I lock the file it can still be accessed by other processes at least on some level. Example code ...
2
votes
1answer
66 views

Java FileLock: How to Load Dynamic Library From Locked File?

I have an applet that retrieves a byte array from a backend server. This byte array contains a dynamic library (DLL or SO, depending on which OS the applet is running on), that must be written to disk ...
2
votes
2answers
236 views

File lock not working as expected

I have a Thread-extending class that is supposed to run only one instance at a time (cross-process). In order to achieve that, I'm trying to use a file lock. Here are bits of my code: class ...
2
votes
2answers
463 views

Cannot delete an image file that is shown in a listview

In my listview I show thumbnails of small images in a certain folder. I setup the listview as follows: var imageList = new ImageList(); foreach (var fileInfo in dir.GetFiles()) { try { ...
2
votes
2answers
2k views

How to prevent file from being overridden when reading and processing it with Java?

I'd need to read and process somewhat large file with Java and I'd like to know, if there is some sensible way to protect the file that it wouldn't be overwritten by other processes while I'm reading ...
2
votes
3answers
780 views

How to find out what processes have folder or file locked?

How do you go about querying running processes to find out what folders or files they have locked? (i.e. you go to eject a drive and you're told that it can't be ejected because it's in use) I'd like ...
1
vote
1answer
29 views

Why is the SMTP service locking the files for several hours?

We are currently using the SMTP service in IIS 6.0 to send mails. All incoming relay mails are monitored by another service which processes the relay mail and deletes/moves it. It works fine! We have ...
1
vote
0answers
19 views

fcntl record lock works in multithreads?

I test multiprocess record lock with fcntl function, my current request needs to use record lock between threads. I tested it, but it doesnot work as thought, do you have any suggestion on ...
1
vote
3answers
267 views

Does the following java code guarantee and exclusive lock on an unopened file in Windows?

Does the following java code guarantee and exclusive lock on an unopened file in Windows? import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import ...
1
vote
2answers
172 views

Windows Java File lock when referencing existing file in constructor?

Suppose I do the following in java for a process that stays open: import java.io.File; import java.util.Date; public class LogHolder { public static void main(String[] args) { File file1 ...
1
vote
4answers
860 views

C# - Lock file until browser is closed, user navigates away from page, or session expires

Is there any way to lock a file until a browser is closed, the user leaves the current page, or their session expires? I have a java app that reads annotations from a text file and lets a user modify ...
1
vote
1answer
446 views

file lock leases via NFS v4 in C

does anybody know how to use the fancy file locking features of NFS v4? (described in e.g. About the NFS protocol (scroll down)). supposedly NFS v4 supports file lock leasing with a 45 second ...
0
votes
0answers
81 views

Schedule a file replace in the next system boot time.. windows xp

I am running a 32-bit windows xp machine on my computer.... recently i have found that an error pops up occasionally showing that Dr Watson Postmortem Debugger has crashed and needs to close. All the ...
0
votes
2answers
223 views

Need help opening printer spool shadow file (.SHD) that is locked

I'm interested in some information inside a shadow file (.shd) located inside the windows print spooling directory "C:\Windows\System32\spool\PRINTERS". Every time a print job is started, a spool ...
0
votes
2answers
327 views

Using FileChannel to write any InputStream?

Can I write any InputStream into a FileChannel? I'm using java.nio.channels.FileChannel to open a file and lock it, then writing a InputStream to the output file. The InputStream may be opened by ...
0
votes
0answers
50 views

SharePoint 2010 Integration with development in WinXP

Some of our clients are still on Windows XP and so I need to make the integration of SharePoint 2010 and our product work for the XP OS. Our file access works through SharePoint's integration with ...
0
votes
3answers
131 views

Unable to read from newly locked file

So I try to locked the file to read it, but I got IOException, any idea why? public static void main(String[] args){ File file = new File("C:\\dev\\harry\\data.txt"); FileReader fileReader = ...
0
votes
1answer
136 views

Problem with Django send_mail “lock already in place. quitting.”

I am having an issue with send_mail in django. It has been working fine until I tried to change some Email settings to have it use an EMAIL_HOST_USER and EMAIL_HOST_PASSWORD. When I did that my test ...
0
votes
2answers
193 views

Why one JVM get FileLock twice will throw OverlappingFileLockException?

Why get the FileLock twice in one JVM will throw OverlappingFileLockException? Why couldn't the second lock aquirement be blocked and get the lock when it released?
0
votes
1answer
157 views

In Java What is the guaranteed way to get a FileLock from FileChannel while accessing a RandomAccessFile?

I am trying to use FileLock lock(long position, long size,boolean shared) in FileChannel object As per the javadoc it can throw OverlappingFileLockException. When I create a test program with 2 ...
0
votes
3answers
107 views

Safest way to copy a file

I need to merg two PDF files. However sometimes a file might be locked up I wrote this code, but I'm wondering if it's not the smartest solution: private static int FILE_LOCKED_WAIT_PERIOD = ...
0
votes
2answers
802 views

Is there a way to delete an output file in a post-build event

I'm trying to run a post-build batch file on a .NET build that encrypts an output file, deletes the original and then renames the encrypted version to the original output filename. i.e.: Build A, ...