Tagged Questions
The hardlink tag has no wiki summary.
22
votes
10answers
4k 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 ...
9
votes
3answers
2k views
Git and hard links
Since git does not recognize symbolic links that point to outside of the repository.
is there any problem using hard links ?
Git could break them ?
Can point me to detailed information ?
7
votes
4answers
5k views
Creating directory hard links in MacOS X?
How can I create a hard link to a directory in OSX?
This feature has been added to their file system in 10.5 (for time machine), but I could not find any information on actually using it from the ...
6
votes
1answer
676 views
Using hardlinks when cloning a Mercurial repository under Windows
I am using Mercurial under Windows XP (using the TortoiseHg distribution) and I want to use NTFS hardlinks when cloning a repository. Out of the box Mercurial does not do this. I have read that a ...
5
votes
1answer
740 views
How to create a Hardlink using the New-Hardlink PowerShell PSCX command
I want to create a new Hardlink with the PowerShell Community Extensions PSCX commandlet New-Hardlink http://pscx.codeplex.com/. I have read the man file and tried almost every combination of commands ...
4
votes
3answers
545 views
Delete link to file without clearing readonly bit
I have a set of files with multiple links to them.
The files are owned by TFS source control but other links to them are made to them. How do I delete the additional links without clearing the ...
4
votes
1answer
757 views
How to get hardlink cloning on Windows
I've got a Win7 x64 box running Tortoise 1.0 x64 release. About Tortoise reveals that it's 1.0 "with Mercurial-1.5, Python-2.6.4, PyGTK-2.16.0, GTK-2.18.7". I've also got ActivePython 2.6 and ...
4
votes
2answers
1k views
Find out whether a file is a symbolic link in PowerShell
I am having a PowerShell script which is walking a directory tree, and sometimes I have auxiliary files hardlinked there which should not be processed. Is there an easy way of finding out whether a ...
3
votes
2answers
348 views
C# - count and list hardlink locations of a file
I'm currently searching for a C# solution which can read the number of hardlinks of a file and their links locations. I'm thinking of the program link shell extension which can do this by going to the ...
3
votes
2answers
626 views
Hard link and Symbolic links in Unix
I just wanted to clarify if a hard/symbolic link is actually a file that is created ??
I ran the command:
ln source hardlink
ln -s source softlink
-- The ls command shows this 2 links as a file.
...
2
votes
2answers
95 views
Is there a way to completely remove an inode when the Link count is 2?
Currently my data is organised in a volume which has a cache directory (where all the files are first created or transferred). After that there are suitable directories on the volume which in their ...
2
votes
3answers
502 views
How can I programmatically distinguish hard links from real files in Windows 7?
I have a difference between files size and used disk space (total file size is even more than disk size). I suppose because there are many hard links exist (to WinSxS components) in Windows 7/Vista. ...
2
votes
2answers
2k views
How to find all files which are basically soft or hard links of other directories or files on linux?
How could I get the list of all linked files on my system or from a certain directory. I used to create links but they became unmanageable with time. I want the list of all such links from a ...
1
vote
2answers
18 views
Bash: Create hardlink if destination is inside same volume, copy if not
My bash script makes copies of some files to some multiple directories.
In order to save space and maximize speed, I would prefer to make hardlinks instead of copies, since all copies need to remain ...
1
vote
2answers
55 views
How to realize “mklink /H” (hardlinking) in Java?
i want to create a hardlink from a file "C:\xxx.log" to "C:\mklink\xxx.log" .
In cmd it works of course, but i want to write a software for this usecase.
So have to locate the existing file
Then ...
1
vote
3answers
48 views
Simulate concatenated file using hard link?
I have multiple parts of a single file which I want a 3rd party c++/c# plugin to read as a single file. Basically, when the plugin file reader gets to the end of one file-part, I want it to continue ...
1
vote
2answers
113 views
Copy a folder programmatically without resolving hardlinks in Windows (Win32 API)
I want to copy an entire folder without resolving the hardlinks
example:
Folder1
|
+---File1
File2
HardLink3 -> File3
(HardLink3 created using fsutil hardlink create or mklink)
...
1
vote
1answer
53 views
MEM_SHARED, mmap, and hard links
Just wondering if the key to shared memory is the file name or the inode.
I have a file called .last, which is just a hard link to a file named YYYYMMDDHHMMSS.
A directory looks like this:
...
1
vote
2answers
64 views
hardlinks in Linux [closed]
What is the size of the hardlink in Linux? Will it be the size of the inode? If I have two of them?
Thanks in advnace for any explanation, I tried to google it, but didn't find anything
1
vote
1answer
73 views
What's the name of the “create hard link” function in MSVCRT?
To fix a bug in this answer: What's the correct name of the function to create a hard link in MSVCRT?
1
vote
1answer
189 views
Find Out If Two HANDLEs are Hardlinks to the Same File
(This question is a toughie... it might require knowledge of NTFS and/or the use of NT Native APIs; be warned.) :)
If I'm given two HANDLEs to two files, how can I definitively (not just with high ...
1
vote
1answer
286 views
How to enumerate paths for all NTFS hard links pointing to a file?
I can use GetFileInformationByHandle to determine the number of hard links associated with a file. How can I enumerate the paths which make up those links?
For example, if C:\TEMP_1.BIN and ...
1
vote
1answer
164 views
replace file with hardlink to another file atomically
I have two directory entries, a and b.
Before, a and b point to different inodes.
Afterwards, I want b to point to the same inode as a does.
I want this to be safe - by which I mean if I fail ...
1
vote
3answers
625 views
Deduplicating identical files using hard links
I have a couple of identical files stored in more than one place on my hard disk.
I figure I can save a lot of disk space by hard-linking them to point to the same file.
I am a little worried about ...
1
vote
2answers
2k views
NFS + Hard Links?
I know it is a condition of hard links that they cannot span filesystems. Does this apply to NFS mounts? Given the following directory structure, would I be able to create a hard link in directory A ...
0
votes
2answers
32 views
Are hard links possible within a zip archive?
I am creating a zip archive containing two identical files at different paths. Does the zip archive format support something akin to the Unix concept of hard links? By this I mean the ability to store ...
0
votes
0answers
23 views
Invisible hardlink
I have a small application that displays the contents of a log file, somewhat transmogrified for readability. As the log file gets rewritten occasionally and Windows file system semantics prohibit ...
0
votes
0answers
26 views
How to *force* a program to run in a different directory than the one it wants to be in
Somehow LittleSpaceDuo insists on running in the directory it's executable is stored in rather than the pwd. The only thing that works is using a hard link. So how do I do it?
0
votes
1answer
47 views
How do I create a hardlink in WiX
Is it possible to create a hardlink in WiX without creating a Custom Action? I found this
thread describing the problem, but it doesn't provide an answer. The reason for wanting to create a hardlink ...
0
votes
0answers
158 views
CreateHardLink and CreateSymbolicLink Win32 Functions
I am completing a project to create dummy file systems for backup testing and need to develop a method of creating a Hardlinks and Softlinks within the structures.
The CreateHardLink and ...
0
votes
1answer
59 views
Force a version control not to break hard links when merging/pulling from another repo?
I have a project with some part of the code that are public and other that are not.
I have the complete project versioned in my entreprise in folder E, and a specific folder P where I put the public ...
0
votes
3answers
327 views
Disadvantages to creating/removing many hard links?
I need to create hundreds to thousands of temporary hard or symbolic links that will be deleted shortly after creation. For my purposes both types of links will work (i.e. the target is not a ...
0
votes
2answers
265 views
Is creating hardlinks from linux on a ntfs partition viable?
I have found a program that can make you save space by hardlinking files that are actually the same, thus leaving only one copy of the file on the file system with more than one hardlink pointing to ...
0
votes
1answer
82 views
emacs is not breaking hard links for hg-controlled files
I have a set of mercurial clones that I created by making one clone of a master repo, then using cp -rlp to make copies of it. My expectation was that I could use them independently, since I use emacs ...
0
votes
0answers
142 views
How to use CreateHardLink(string lpSymlinkFileName, string lpTargetFileName, IntPtr lpSecurityAttributes) with a relative path for target?
Using
[DllImport("kernel32.dll")]
static extern bool CreateHardLink(string lpSymlinkFileName,
string lpTargetFileName, IntPtr lpSecurityAttributes);
should I be able to use a relative path for the ...
0
votes
1answer
382 views
Get Windows hardlink count without GetFileInformationByHandle()
Is there a way to get a file hardlinks count on Windows without using GetFileInformationByHandle()?
MSDN says:
Depending on the underlying network features of the operating system and the type of ...
0
votes
3answers
1k views
fsutil hardlink doesn't work?
I was looking for a way to create hard links under Windows and I found this page: http://technet.microsoft.com/en-us/library/cc788097.aspx
To try it out, I created a file (1.txt) on the root of my C: ...