|
Search Tech-Forums - link takes you to our Forum's search page. Note: The following is only a text archive! To view the actual forum discussion, please visit our website at http://www.tech-forums.net Pages:1 Virtual Drive(Click here to view the original thread with full colors/images)Posted by: yobrojas Hi, I am wanting to program a virtual drive that can be seen as a physical drive (like the C: and D:). When files are copied to it etc the files are then sent via ftp to a ftp server. Can anyone suggest what the best language is for programming this application? Also does anyone know any good websites that have guides/tutorials on how this can be done? Thanks Posted by: jaeusm [QUOTE]I am wanting to program a virtual drive that can be seen as a physical drive[/QUOTE] I'm assuming you want to create this application in Windows. If that is the case, then the easiest route is to create a .NET application in C#. C# and .NET facilitate network programming and Windows interaction quite nicely. [QUOTE]Also does anyone know any good websites that have guides/tutorials on how this can be done?[/QUOTE] It's the programmer's job to come up with the solution! If you are creating this program for yourself only, you could create a new folder somewhere on your hard drive, share it, and then map it as a different drive. In that case, all you'd have to do is write a program (or windows service) to monitor the folder and send its contents to the remote server. Posted by: yobrojas Thanks very much for that info. Very helpful. I am a c# programmer so that cool. I havn't been programming long only 6 month or so. So can you suggest any good resource for learning about windows services? Posted by: yobrojas Is there a way I can use the filesystemwatch component to monitor a folder I create for new files and changed files(that i know how to do), but then when it notices some change it will upload those files or changed files to an ftp server. Is this the correct way of doing it? Posted by: jaeusm [QUOTE] Is there a way I can use the filesystemwatch component to monitor a folder I create for new files and changed files(that i know how to do), but then when it notices some change it will upload those files or changed files to an ftp server. Is this the correct way of doing it?[/QUOTE] I have not used the filesystemWatch component, but you have the right idea. First, I would write the network code and verify that it works. After that, write the windows service. A service is just a program that Windows runs in the background. If you are using Visual Studio 2005, there is an option to create a Windows service when start a new project. If you need more info on services immediately, try Google. You will find that creating services is not very difficult. [QUOTE]I havn't been programming long only 6 month or so[/QUOTE] This project (especially the network code) may be over your head at this point. However, when you run into specific problems, post them back here. Posted by: yobrojas Thanks. Great Info Posted by: yobrojas Can this be done using Python programming language? I am more skilled with this language yet have never attempted something like this. Is it possible? Posted by: jaeusm Yes. Posted by: yobrojas How would I have to go about this with python and do you know any good resources to learn about this type of thing. vBulletin Copyright ©2000 - 2003, Jelsoft Enterprises Limited. PPC Management vB Easy Archive Final - Created by Xenon |