search for: filesystemwatch

Displaying 9 results from an estimated 9 matches for "filesystemwatch".

Did you mean: filesystemwatcher
2011 Jun 16
1
Samba and .NET FileSystemWatcher
Hi All, I've been looking into a problem using the .NET FileSystemWatcher class in a VB application. The application is only receiving notifications for events in the root of the directory it is watching. E.g. When monitoring \\SambaServer\Files <file:///\\SambaServer\Files> \\SambaServer\Files\file.txt <file:///\\SambaServer\Files\file.txt> will give notif...
2006 Feb 03
1
Using samba volume with C# FileSystemWatcher class
I'm trying to monitor changes to the contents of a directory using the FileSystemWatcher class of MS Visual Studio C#. Here is my setup: Unix (Sun OS) with an nfs share pointing to a sub-directory on the local disk Windows XP (sp2) with the nfs share set up and mapped to the T: drive designator. Using "My Computer", I can open a window to the nfs share and see all of the...
2004 Oct 08
0
Question about FileSystemWatcher
Has anyone ever tried to use .net FileSystemWatcher against a Samba server? Microsoft says that FileSystemWatcher commands only work against Win2k or greater servers. Does anyone know if Samba can emulate this support? FileSystemWatcher is a component of .net that let's the program listen for File system change alerts, such as when a file i...
2008 Feb 27
1
Lower and Upper Case and MS C# FilesystemWatcher
Hi all, I'm trying to find a way to make the C# FilesystemWatcher class distinguish between Linux mixed lower and upper case files on a Samba share. E.g., file A is called abc.JPG and file B is abc.jpg, and Linux knows that's two files - now, when I delete such a file via a Samba share, both files A and B are deleted. I did not find a solution at Google o...
2010 Feb 04
1
Using the 'WatchSubDirectories' setting in a .NET FileSystemWatcher with a Samba Share
Hi all, I've just managed to upgrade to Samba 3.3 and am pretty ecstatic about finding i can now use FileSystemWatcher to watch for file changes in a directory. On a Windows system however, when I say 'watch $dir' with watchsubdirectories == true and $dir/a/file.jpg is changed, I get a filechanged notification - on Samba 3.3 this doesn't happen - does anyone know if it's a bug that was fixed,...
2005 Oct 25
1
FileSystemWatcher
Hi, I tried to use the FileSystemWatcher class on a Samba share. It does not work. Using API's is not that easy and I don't want to have it run on a timer. I would rather have it event driven.. I am using VB.NET and Samba 3.0.20b on SuSE 9.2 with RiserFS Will this class ever be implemented with Samba? I thought that Samba emul...
2006 Aug 15
6
FileSystemWatcher - has any one done this?
...the folder name(s) as tags for that file. make sense? can it be done? I''m still real new at this and have big dreams, eh? i have''t seen any tutorials one how to do this in ROR, I''ve seen .Net and coldfusion. I saw this but not sure how to use it. http://www.jhorman.org/FileSystemWatcher/index.html thanks John Ivanoff
2011 Jan 09
4
IIS Change Notifications
Good afternoon all, I'm a web developer (c#) who also manages a small hosting environment. Roughly, our configuration is: Two IIS7 (Windows Server 2008 Web) servers which share configuration data and site files from a SMB share located on a ubuntu server. The ubuntu server is currently running 3.0.28a which is quite old, but read on. We've been having a problem with the change
2010 Nov 09
5
Changes made to main.c on implementing real time Rsync
Hi, All, I am implementing real-time Rsync on Windows 2008 system. I set up Rsync server and Rsync client on two machines. An windows service is watching all the Windows file events with FileSystemWatcher. However, the service cannot tell the exactly what happened to folders such as create, delete, or modified. So, I ignored folder event, and only catch file changing events. After I catch all those files changed, then call Rsync client periodically to transfer changes to the server. Now the prob...