vote up 4 vote down star
2

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.

flag
The functionality I need is to be able to create a directory containing links to files from disparate places in the file system, and then have my Python code be able to open those files as though they were in that directory. – Harkonnen Jama Sep 19 at 3:27
Why do you need that functionality? – Lennart Regebro Sep 19 at 5:08

4 Answers

vote up 1 vote down

NTFS file system has junction points, i think you may use them instead

copied from my answer to http://stackoverflow.com/questions/1143260/create-ntfs-junction-point-in-python

you can use python win32 API modules e.g.

import win32file

win32file.CreateSymbolicLink(fileSrc, fileTarget, 1)

see http://docs.activestate.com/activepython/2.5/pywin32/win32file%5F%5FCreateSymbolicLink%5Fmeth.html for more details

if you do not want to rely on that too, you can always use ctypes and directly call CreateSymbolicLinl win32 API, which is anyway a simple call

here is example call using ctypes

import ctypes

kdll = ctypes.windll.LoadLibrary("kernel32.dll")

kdll.CreateSymbolicLinkA("d:\test.txt", "d:\test_link.txt", 0)

MSDN (http://msdn.microsoft.com/en-us/library/aa363866%28VS.85%29.aspx) says Minimum supported client Windows Vista

link|flag
vote up 4 vote down

Problem is, as explained e.g. here, that Windows' own support for the functionality of symbolic links varies across Windows releases, so that e.g. in Vista (with lots of work) you can get more functionality than in XP or 2000 (nothing AFAIK on other win32 versions). Or you could have shortcuts instead, which of course have their own set of limitations and aren't "really" equivalent to Unix symbolic links. So, you have to specify exactly what functionalities you require, how much of those you are willing to sacrifice on the altar of cross-win32 operation, etc -- THEN, we can work out how to implement the compromise you've chosen in terms of ctypes or win32all calls... that's the least of it, in a sense.

link|flag
vote up 2 vote down

Windows doesn't support symbolic links.

link|flag
2  
It varies -- Vista does an ALMOST semi-quasi-usable job of them, 2k and xp have one very special case covered, and, there are shortcuts. – Alex Martelli Sep 19 at 2:57
vote up 1 vote down

EDIT: this was not as helpful as I first thought.

  import os
  os.symlink(file1,file2)
  link = os.readlink(file2)   #  link <== file1

The os module strives (and does a pretty good job) to hide the platform-specific details.

link|flag
There's only so much the os module can do: os.symlink() doesn't exist on Windows. – Ned Batchelder Sep 19 at 2:54
I have it on Windows XP in v2.5.2. YMMV I guess. – mobrule Sep 19 at 2:56
1  
As the docs at docs.python.org/library/os.html?#os.symlink/… say about os.symlink: "Availability: Unix". SOME huge gaping holes of differences, such as this one, are just TOO huge to bridge easily. – Alex Martelli Sep 19 at 2:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.