Creating a virtual directory in windows explorer

  • Thread starter Thread starter sumit.professional
  • Start date Start date
S

sumit.professional

Hello Friends,

Help requried for creating a virtual drive in windows explorer using
C# which will work for both 32 bit and 64 bit machine(XP and Vista).
Means just want to show a xtra drive in windows explorer.
If anybody knows anything like this the please let me know at
(e-mail address removed)

Thanks in advance :-)
 
Well, C# isn't a language you should use for this, as you will have to
create a shell extension in order to hook into explorer. When creating
shell extensions, it is NOT recommended that you use .NET.
 
Thanxs for your precious reply.
but please guide me if i still wish to carry out this in .net.
There must we some thing that we can do
becuase i saw people to use shell extension in .net

waiting for your reply........
 
Ok, thanks for replies.
I am sure that we cant do such thing in .net
Can anybody suggest me which language i should use ???
 
Ok, thanks for replies.
I am sure that we cant do such thing in .net
Can anybody suggest me which language i should use ???

C++

You *might* be able to write the plumbing in C++ and the guts in your
favorite .NET language. Your extension would primarily be a C++
project that makes calls into your managed DLL... but I think that
still leaves you with the caveats mentioned in the Microsoft
Knowledgebase article.

You're probably better off doing the whole thing in C++. If you're
not comfortable with object oriented programming, you could always use
C, which I consider just a subset of C++. But, since you're a .NET
developer, I'm guessing you probably don't have trouble grasping OO
concepts.

I believe Delphi would probably work well too. Just be sure to make a
Win32 project and NOT a .NET project.

Good Luck!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top