Virtual Folders
Results 1 to 6 of 6

Thread: Virtual Folders

  1. #1
    Join Date
    Apr 2005
    Location
    Texas, USA
    Posts
    107

    Virtual Folders

    I was wondering if there was a way to use virtual folders (or at least something like it) in windows xp?

    I am interested in making all references to a specific folder route to a different one. For example, if any programs reference folder C:\MyStuff, it should immediately take them to C:\OtherStuff, assuming that they have been 'linked'.

    Thanks for any help.
    --MrDoomMaster
    --Win32/MFC/DirectX C++ Programmer

  2. #2
    Join Date
    Sep 1999
    Location
    Clearwater, Fl.
    Posts
    22,610
    Inside MyStuff you can create a Shortcut to OtherStuff.

    Might look into Tweakui. You can customize the "Places Bar."

    "FREE" Microsoft PowerToys for Windows XP
    http://www.microsoft.com/windowsxp/d...powertoys.mspx
    If you're happy and you know it......it's your meds.

  3. #3
    Join Date
    Oct 2005
    Location
    NY
    Posts
    54
    I don't think there is such a feature on XP. The only thing similar would be virtual directory on IIS. You install iis, create virtual directory, and then have the program request localhost/directory.
    Why do you need a virtual forwarder anyway?

  4. #4
    Join Date
    Apr 2005
    Location
    Texas, USA
    Posts
    107
    Quote Originally Posted by Steve R Jones
    Inside MyStuff you can create a Shortcut to OtherStuff.

    Might look into Tweakui. You can customize the "Places Bar."

    "FREE" Microsoft PowerToys for Windows XP
    http://www.microsoft.com/windowsxp/d...powertoys.mspx
    The reason I need to do this is because I am developing a game for a cellphone emulator that has a horrible game data directory.

    Basically, lets assume I have the following file in the following folder:

    C:\GameData\MyData.dat

    Now, lets say the emulator is looking in this directory for MyData.dat:

    C:\EmuData\AnotherDir\

    When the emulator, in code, references the following path:

    C:\EmuData\AnotherDir\MyData.dat

    The emulated folder AnotherDir, should actually point to GameData folder. If 'AnotherDir' is a shortcut, will it be treated as a directory? Thanks...
    --MrDoomMaster
    --Win32/MFC/DirectX C++ Programmer

  5. #5
    Join Date
    Oct 2005
    Location
    NY
    Posts
    54
    I know it is time consuming, but couldn't you just copy the .dat file into your C:\EmuData\AnotherDir directory?
    Or
    Is there a setting within emulator to allow custom paths?

    I guess the real question is, do you need to have the two seprate locations for a reason? Why can't you save your work in C:\EmuData\AnotherDir\ and work from there?

  6. #6
    Join Date
    Feb 2001
    Location
    Adelaide, South Australia
    Posts
    6,447
    The good news is that what you want does exist in NTFS; the Windows term is "reparse points" (although they're commonly known as junctions or symlinks).

    The bad news is that they're a pain to work with. Windows doesn't include any way to make them, but if you download the Windows Server 2003 Resource Kit tools then there's a command line util called linkd.exe which will do it. They can be removed with the built-in fsutil command.

    For more info, see KB 205524.
    Safe computing is a habit, not a toolkit.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •