11
votes
4answers
2k views
Windows XP vs Vista: NTFS Junction points
Problem: I relied heavily on NTFS Junction points in Windows XP, even though they apparently were not an "official" feature of the operating system. Now MSFT has generously made NTFS Junction points …
11
votes
10answers
2k views
What is the difference between a symbolic link and a hard link?
Recently I was asked this during a job interview. I was honest and said I knew how a symbolic link behaves and how to create one, but do not understand the use of a hard link and how it differs from a …
6
votes
8answers
2k views
How to resolve symbolic links in a shell script
Given an absolute or relative path (in a Unix-like system), I would like to determine the full path of the target after resolving any intermediate symlinks. Bonus points for also resolving ~username …
5
votes
3answers
70 views
Is there a version of os.getcwd() that doesn’t dereference symlinks?
I have a Python script that I run from a symlinked directory, and I call os.getcwd() in it, expecting to get the symlinked path I ran it from. Instead it gives me the "real" path, and in this case …
5
votes
3answers
2k views
How can I get git to follow symlinks?
I've had a google for how to do this, but not had any luck.
Is my best be going to be a shell script which replaces symlinks with copies, or is there another way of telling git to follow symlinks?
…
5
votes
10answers
3k views
How to create symbolic links in Windows?
I've tried Winbolic (Windows XP), but i can't get it to work the way I want.
Am I wrong here?:
If I create a symbolic link within a folder in my %PATH%, the referenced directory should work as if it …
4
votes
4answers
144 views
Symlinks on windows?
Does anyone know of a way to make/read symbolic links across versions of win32 from Python? Ideally there should be a minimum amount of platform specific code, as I need my app to be cross platform.
4
votes
3answers
603 views
How do I create a symlink in Windows Vista?
I am looking to create symlinks (soft links) from Java on a Windows Vista/ 2008 machine. I'm happy with the idea that I need to call out to the JNI to do this. I am after help on the actual C code …
4
votes
5answers
556 views
Is there a way to check if there are symbolic links pointing to a directory?
I have a folder on my server to which I had a number of symbolic links pointing. I've since created a new folder and I want to change all those symbolic links to point to the new folder. I'd …
3
votes
5answers
69 views
Mulitple Sites with common files
I have developed over 50 sites that all use the exact same files other than CSS and IMAGES, i currently duplicate the files each time i create a new site and uplaod different css and images.
What …
3
votes
1answer
173 views
Find out whether a file is a symlink in Powershell
Edit: Changed the question title since the answer explicitly only handles Symlinks.
I am having a Powershell script which is walking a directory tree and sometimes I have auxiliary files hardlinked …
3
votes
2answers
262 views
Can I symlink multiple directories into one?
I have a feeling that I already know the answer to this one, but I thought I'd check.
I have a number of different folders:
images_a/
images_b/
images_c/
Can I create some sort of symlink such …
3
votes
5answers
236 views
Can this build system be sped up?
Our build is dog slow. It uses nested gnu makefiles on linux. It creates three builds for three different targets from the same source tree. It uses symlinks to point to each of the three parallel …
2
votes
2answers
24 views
Ignore symlinks in clean URL’s in .htaccess
Example URL:
example.com/user
/user is both a symlinked directory and a valid URL to content on my site. I user Horde Routes to request the content and all requests to the site go through index.php.
…
2
votes
4answers
72 views
Can ‘make’ check if mtime of a dependency is *different* between runs, not just if it’s newer than target?
If foo_user.cpp depends on foo.h, then foo_user.cpp is built, and then foo.h's modification time is set to further in the past, make will not rebuild foo_user.cpp (because foo.cpp is 'newer'). I'd …
