473,407 Members | 2,315 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,407 software developers and data experts.

UNC, ftp, FileSystemWatcher


I've posted parts of problems in other posts, but I thought I'd
consolidate my questions because I still don't have a solution.
Problem:

I want to use the creation of a file on a remote ftp site (running Unix)
as a trigger for other processes to start.
Platform:

Windows 2000 server running .Net
Remote ftp site running unix
Thoughts:

I thought that if I could somehow access an ftp site with UNC or map a
drive letter to the ftp site, I could use the FileSystemWatcher class to
monitor the ftp site.
Explorations:

In Windows Server 2000, I have not found any way yet to mount an ftp
site with a drive letter. I have not found a way to mount an ftp site
as a drive letter.

One poster recommended writing a network redirector -- however I don't
know if my skills are up to it...or if it's the right path. I would
like some verification...and I want to make sure there is not an easier
way before building such a thing in .net

I would prefer not to use any 3rd party windows software that

(a) costs real money or
(b) does not provide source code.

--
Texeme Textcasting Technology
http://texeme.com
Jul 21 '05 #1
7 4168
I would forget the FileSystemWatcher idea. All it does it wrap some Windows
specific API's, it just ain't going to work. If you can't write code for the
UNIX box I think you are left with polling for the change.

"John Bailo" <ja*****@texeme.com> wrote in message
news:FM********************@speakeasy.net...

I've posted parts of problems in other posts, but I thought I'd
consolidate my questions because I still don't have a solution.
Problem:

I want to use the creation of a file on a remote ftp site (running Unix)
as a trigger for other processes to start.
Platform:

Windows 2000 server running .Net
Remote ftp site running unix
Thoughts:

I thought that if I could somehow access an ftp site with UNC or map a
drive letter to the ftp site, I could use the FileSystemWatcher class to
monitor the ftp site.
Explorations:

In Windows Server 2000, I have not found any way yet to mount an ftp site
with a drive letter. I have not found a way to mount an ftp site as a
drive letter.

One poster recommended writing a network redirector -- however I don't
know if my skills are up to it...or if it's the right path. I would like
some verification...and I want to make sure there is not an easier way
before building such a thing in .net

I would prefer not to use any 3rd party windows software that

(a) costs real money or
(b) does not provide source code.

--
Texeme Textcasting Technology
http://texeme.com

Jul 21 '05 #2
Stelrad Doulton wrote:
I would forget the FileSystemWatcher idea. All it does it wrap some Windows
specific API's, it just ain't going to work. If you can't write code for the
UNIX box I think you are left with polling for the change.
Thanks, that's /exactly/ what I needed to know.

I'll go with a loop and put in a delay to adjust if the file is still
open or being created...unless there's a way to examine file status from
..Net.


"John Bailo" <ja*****@texeme.com> wrote in message
news:FM********************@speakeasy.net...
I've posted parts of problems in other posts, but I thought I'd
consolidate my questions because I still don't have a solution.
Problem:

I want to use the creation of a file on a remote ftp site (running Unix)
as a trigger for other processes to start.
Platform:

Windows 2000 server running .Net
Remote ftp site running unix
Thoughts:

I thought that if I could somehow access an ftp site with UNC or map a
drive letter to the ftp site, I could use the FileSystemWatcher class to
monitor the ftp site.
Explorations:

In Windows Server 2000, I have not found any way yet to mount an ftp site
with a drive letter. I have not found a way to mount an ftp site as a
drive letter.

One poster recommended writing a network redirector -- however I don't
know if my skills are up to it...or if it's the right path. I would like
some verification...and I want to make sure there is not an easier way
before building such a thing in .net

I would prefer not to use any 3rd party windows software that

(a) costs real money or
(b) does not provide source code.

--
Texeme Textcasting Technology
http://texeme.com


--
Texeme Textcasting Technology
http://texeme.com
Jul 21 '05 #3
FTP support is in .NET 2.0, until then you will need a 3rd party
implementation. There are lots about. You want one that exposes the last
modified property of the file as this one does:
http://www.enterprisedt.com/products...api/index.html

"John Bailo" <ja*****@texeme.com> wrote in message
news:fv********************@speakeasy.net...
Stelrad Doulton wrote:
I would forget the FileSystemWatcher idea. All it does it wrap some
Windows specific API's, it just ain't going to work. If you can't write
code for the UNIX box I think you are left with polling for the change.


Thanks, that's /exactly/ what I needed to know.

I'll go with a loop and put in a delay to adjust if the file is still open
or being created...unless there's a way to examine file status from .Net.


"John Bailo" <ja*****@texeme.com> wrote in message
news:FM********************@speakeasy.net...
I've posted parts of problems in other posts, but I thought I'd
consolidate my questions because I still don't have a solution.
Problem:

I want to use the creation of a file on a remote ftp site (running Unix)
as a trigger for other processes to start.
Platform:

Windows 2000 server running .Net
Remote ftp site running unix
Thoughts:

I thought that if I could somehow access an ftp site with UNC or map a
drive letter to the ftp site, I could use the FileSystemWatcher class to
monitor the ftp site.
Explorations:

In Windows Server 2000, I have not found any way yet to mount an ftp site
with a drive letter. I have not found a way to mount an ftp site as a
drive letter.

One poster recommended writing a network redirector -- however I don't
know if my skills are up to it...or if it's the right path. I would like
some verification...and I want to make sure there is not an easier way
before building such a thing in .net

I would prefer not to use any 3rd party windows software that

(a) costs real money or
(b) does not provide source code.

--
Texeme Textcasting Technology
http://texeme.com


--
Texeme Textcasting Technology
http://texeme.com

Jul 21 '05 #4
Hi,

I'll go with a loop and put in a delay to adjust if the file is still open
or being created...unless there's a way to examine file status from .Net.


If you have access to the process that create the file you could ask to
create another file with the same name but with a different extension, this
"flag" file is created when the data file is ready to be downloaded.
cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

Jul 21 '05 #5
Ignacio Machin ( .NET/ C# MVP ) wrote:
Hi,
I'll go with a loop and put in a delay to adjust if the file is still open
or being created...unless there's a way to examine file status from .Net.

If you have access to the process that create the file you could ask to
create another file with the same name but with a different extension, this
"flag" file is created when the data file is ready to be downloaded.
cheers,

Good idea...unfortunately, this is basically a 'read only' situation
from me as the orgin is a client's ftp site.

--
Texeme Textcasting Technology
http://texeme.com
Jul 21 '05 #6

Stelrad -- this is perfect! It's GNU licensed...

" edtFTPnet is the first choice of .NET developers worldwide for
incorporating FTP functionality into their applications.

edtFTPnet is Open Source, licensed under the LGPL, the GNU Lesser
General Public License.

This means you can freely embed edtFTPnet into your commercial .NET
applications, subject to the normal LGPL restrictions. Unrestricted
(non-GPL) source licenses can be also be purchased.

edtFTPnet/PRO provides SOCKS proxy support and secure FTP capabilities
via FTPS. "
Stelrad Doulton wrote:
FTP support is in .NET 2.0, until then you will need a 3rd party
implementation. There are lots about. You want one that exposes the last
modified property of the file as this one does:
http://www.enterprisedt.com/products...api/index.html

"John Bailo" <ja*****@texeme.com> wrote in message
news:fv********************@speakeasy.net...
Stelrad Doulton wrote:
I would forget the FileSystemWatcher idea. All it does it wrap some
Windows specific API's, it just ain't going to work. If you can't write
code for the UNIX box I think you are left with polling for the change.


Thanks, that's /exactly/ what I needed to know.

I'll go with a loop and put in a delay to adjust if the file is still open
or being created...unless there's a way to examine file status from .Net.
"John Bailo" <ja*****@texeme.com> wrote in message
news:FM********************@speakeasy.net...
I've posted parts of problems in other posts, but I thought I'd
consolidate my questions because I still don't have a solution.
Problem:

I want to use the creation of a file on a remote ftp site (running Unix)
as a trigger for other processes to start.
Platform:

Windows 2000 server running .Net
Remote ftp site running unix
Thoughts:

I thought that if I could somehow access an ftp site with UNC or map a
drive letter to the ftp site, I could use the FileSystemWatcher class to
monitor the ftp site.
Explorations:

In Windows Server 2000, I have not found any way yet to mount an ftp site
with a drive letter. I have not found a way to mount an ftp site as a
drive letter.

One poster recommended writing a network redirector -- however I don't
know if my skills are up to it...or if it's the right path. I would like
some verification...and I want to make sure there is not an easier way
before building such a thing in .net

I would prefer not to use any 3rd party windows software that

(a) costs real money or
(b) does not provide source code.

--
Texeme Textcasting Technology
http://texeme.com



--
Texeme Textcasting Technology
http://texeme.com


--
Texeme Textcasting Technology
http://texeme.com
Jul 21 '05 #7
Ignacio Machin ( .NET/ C# MVP ) wrote:
Hi,
I'll go with a loop and put in a delay to adjust if the file is still open
or being created...unless there's a way to examine file status from .Net.

If you have access to the process that create the file you could ask to
create another file with the same name but with a different extension, this
"flag" file is created when the data file is ready to be downloaded.


My current implementation is this:

I loop through all the files on the ftp server, and I do a
!File.Exists() on my local directory. If not, then I download it.

I like Stelrad's suggestion of employing add on libaries that let me
view the LastModified, so I can can look for files that appeared since
the last runtime -- that is more elegant because I don't need to
maintain an archive of all the files on my local folder.

I also looked at a tool called WebDrive. This is a shareware component
that will take and ftp site and let you map a drive letter to it.
Unfortunately the current version won't support FileSystemWatcher -
however, their support department tells me the 7.0 version, to be
released this summer, will...and that will make it a very good tool to have!

Then of course there's Net 2.0 -- I need to plow through those docs as
well...

--
Texeme Textcasting Technology
http://texeme.com
Jul 21 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Josh Usovsky | last post by:
I'm setting up a watched folder using FileSystemWatcher. When I drop a small file into the watched folder, I can respond to a .Created event and process the file with other code. However, if I try...
1
by: Troy Murphy | last post by:
How do I prevent the FileSystemWatcher event to keep firing while the file is being created? When copying a file to the watched folder, the event fires a dozen or more times! Also, the...
7
by: Allen Anderson | last post by:
I'm trying to figure out a way to catch when a file has been written to a directory. I currently have it where I can catch when the file begins writing, but this isn't helpful as I need to know...
2
by: Jet Leung | last post by:
Hi all, I had made a program to watching files in my directory. I had used a instance of FileSystemWatcher to do my work.And I had add some events of the FileSystemWatcher , for example onChange,...
13
by: David | last post by:
I have been working on trying to write a directory watcher service. One of the requirments is that it be able to watch multiple directories, not sub directories of one parent directory, but just...
3
by: Stampede | last post by:
Hi, I want to use the FileSystemWatcher in a Windows Service. I read an article, where the author created the FileSystemWatcher object in a seperate thread and when the event is fired, he started...
20
by: J-T | last post by:
We are working on an asp.net application which is a 3-tier application.I was aksed to create a component which monitors a folder and gets the file and pass them to a class library in our business...
12
by: ljh | last post by:
Has anyone else noticed that the FileSystemWatcher raises the changed event twice when a file is changed? Do you have any idea why this is the case?
5
by: Goran Djuranovic | last post by:
Hi all, I have a file system watcher service that works fine on a local hard drive, but will not work across the network. I tried both: mapping the drive and "\\..." path both no luck. I don't...
5
by: =?Utf-8?B?Sm9obiBT?= | last post by:
I am trying to find out if there is a way to tell if there is already a filesystemwatcher (created by a webservice) monitoring a folder. I have a webservice that creates a filesystemwatcher,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.