active questions tagged mount - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T18:31:55Zhttp://stackoverflow.com/feeds/tag/mounthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1831440/is-there-a-way-to-mount-android-img-to-access-the-avd-android-virtual-device-c0Is there a way to mount Android .img to access the AVD (Android Virtual Device) contents?Artem Russakovskii2009-12-02T08:30:07Z2009-12-02T08:46:21Z
<p>I feel a bit blind developing on an emulator for Android and not being able to see the file system on the AVD (.img).</p>
<p>Is there a way to mount it in Windows or Linux, so that I could at least see the file listing and maybe contents?</p>
<p>Bonus if it's mounted with write permissions as well.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1809582/mounting-minix-filesystem-on-ubuntu0mounting minix filesystem on ubuntu [closed]Manuel2009-11-27T16:15:01Z2009-11-27T16:20:42Z
<p>How can I mount a Minix filesystem in Ubuntu?
I'm trying to do </p>
<pre><code>sudo mount -o loop,offset=1024 -t minix B30M biggy/
</code></pre>
<p>and I get </p>
<p>mount: wrong fs type, bad option, bad superblock on /dev/loop0,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1081485/osx-mount-local-directory2osx 'mount' local directorySteve9182009-07-04T04:26:20Z2009-11-13T14:44:29Z
<p>is it possible to mount a local directory into another one. Using perfoce I want to do something equivalent to symlinking a directory, but in a way that fools it into thinking it's really just another directory in the project.</p>
<p>I would like to do something like:</p>
<blockquote>
<p>mount /foo/bar /home/foo/bar</p>
</blockquote>
<p>Is this possible, and if so what options do I need to give it.</p>
http://stackoverflow.com/questions/1653163/difference-between-statvfs-and-statfs-system-calls3Difference between statvfs() and statfs() system calls?Anacrolix2009-10-31T02:01:47Z2009-10-31T02:20:39Z
<p>Why do the statfs() and statvfs() calls both exist when they're so similar?</p>
<p>Under what circumstances would I prefer one over the other?</p>
http://stackoverflow.com/questions/1604135/how-can-i-mount-an-iso-file-on-windows-7-to-install-software-that-reboots-during0How can I mount an ISO file on Windows 7 to install software that reboots during install?Edward Tanguay2009-10-21T23:01:31Z2009-10-21T23:09:27Z
<p>I have <strong>Windows 7</strong>.</p>
<p>I downloaded the <a href="http://www.microsoft.com/express/future/" rel="nofollow">Visual Studio Express 2010 beta ISO file</a>.</p>
<p>In installed <a href="http://www.slysoft.com/en/virtual-clonedrive.html" rel="nofollow">Virtual Clone Drive</a> and mounted the above ISO file as a drive.</p>
<p>I installed from that drive, but upon the necessary <strong>reboot</strong>, it couldn't <strong>find</strong> the drive, even after I mounted it again and clicked <code>Try Again</code>, it still couldn't find the file and hence had to <strong>cancel the install</strong>.</p>
<p><strong>Is there a way to mount an ISO file in Windows 7, perhaps natively so that it will deal well with the during-install-reboot?</strong></p>
http://stackoverflow.com/questions/1554178/how-to-register-fuse-filesystem-type-with-mount8-and-fstab1How to register FUSE filesystem type with mount(8) and fstab?drdaeman2009-10-12T12:03:36Z2009-10-12T15:11:23Z
<p>I've written a small FUSE-based filesystem and now the only part's missing is that I want to register it with fstab(5) to auto-mount it on system startup and/or manually mount it with just <code>mount /srv/virtual-db</code>. How can I achieve this?</p>
<p>I know, I can just run <code>/usr/bin/vdbfs.py /srv/virtual-db</code> from some init script, but that's not exactly pretty.</p>
<p>I'm sorry because this may be not exactly a programming question, but it's highly related, as the packaging and deployment is still the programmer's job.</p>
http://stackoverflow.com/questions/1462320/ruby-code-on-nfs-mount-using-another-file-on-same-mount-causes-problems0Ruby code on NFS mount, using another file on same mount causes problems.kramer2009-09-22T20:15:02Z2009-09-23T19:28:52Z
<p>I'm working on an embedded system whoose details are explained at the end of this post. Tools are ruby on linux.</p>
<p>I put my ruby code on a remote NAS device on network and mount it to the embedded system I'm working on using NFS v3. My project scenario is like this: there is an all-in-one auto starter which 1.mounts the nfs share, 2. starts the webrick ruby code on mounted dir, 3. starts some other biz-logic related ruby code again on mounted dir, 4. starts a ruby code on local file system which does some basic logging and stuff...
I put each step in a loop that will retry when a start operation fails (start operations are made by system 'ruby XXXX' or popen3 calls). Here's what happens when I run this starter: step1 goes ok, step 2 fails, step 3 fails, step 4 goes ok, then step2 and 3 are retried and both starts ok too <i><b>allways at second trial</i></b>(I want to add that started codes are independent so; it doesnt matter which one starts first and changing the start order didnt make any difference).</p>
<p>I have inspected this problem and found out it also happens when I start things manually from shell and filtered it down to this: My webrick code loads .rb files that are at the same directory as itself and has some FileHandlers using the subdirs in NFS mount and my biz-logic also loads .rb files from nfs mount. And this, I believe, is the source of my problem (I have tried to load those files using both absolute paths like '/mnt/myMount/myLib.rb' and File.Join which both didnt make any difference).</p>
<p><i>Also, </i>the webrick filehandlers too act pretty strange in this scenario, they <b>always</b> fail at first request of a file and then succeeds at the second request, no matter the file size.</p>
<p>To sum up, as the title says, when a Ruby code on NFS mount uses another file on same mount, ruby gives an EIO (Input Output Error).
I was able to reproduce this problem using simple .rb files (that just print itselves filename) loading each other as explained in the above scenario on my environment (though I havent tried this on a regular PC).
How can I solve this, is it about the paths given to load/require methods or what?</p>
<p>My working envrionment: The device I'm working with is an intelligent RFID reader, with an embedded linux arm based computer on-board. The only api/language manufacturer allows and provides (w/o getting out of license terms) is ruby, and they give no-support for installing extra-stuff and they have customized the kernel in device to make installing/compiling anything as hard as possible. I can use extra ruby stuff if they're just .rb lib files that is I can easily just include them in my code, but anything that requires compiling is a no-no. Also, this system does not have gem.</p>
http://stackoverflow.com/questions/1449619/how-do-i-mount-sub-directory-to-a-hard-drive-in-linux0How do I mount sub-directory to a hard drive in Linux? [closed]-provideralbarak2009-09-19T21:46:23Z2009-09-19T22:09:46Z
<p>Hello,
Let us assume that I have two hard drives (A,B) and have the following directories:</p>
<ul>
<li>/var/www</li>
<li>/var/www/upload</li>
</ul>
<p>Currently if I upload a file to /var/www OR /var/www/upload ; it will be saved in drive A.</p>
<p><strong>How do I make the folder /var/www/upload point to the drive B. So if I upload a file to /var/www/upload it will be saved in drive B but when I upload a file to /var/www ,it will be saved in drive A.</strong></p>
http://stackoverflow.com/questions/1419489/loopback-mounting-individual-partitions-from-within-a-file-that-contains-a-partit1loopback mounting individual partitions from within a file that contains a partition table on linuxAtlas1j2009-09-14T02:50:43Z2009-09-14T11:48:51Z
<p>Is there any new/better way of loopback mounting individual partitions from within a file that contains a partition table on linux? I see the following but they are somewhat dated.</p>
<p><a href="http://linux.derkeiler.com/Mailing-Lists/Kernel/2005-01/7183.html" rel="nofollow">http://linux.derkeiler.com/Mailing-Lists/Kernel/2005-01/7183.html</a></p>
<p><a href="http://lists.gnu.org/archive/html/grub-devel/2005-01/msg00077.html" rel="nofollow">http://lists.gnu.org/archive/html/grub-devel/2005-01/msg00077.html</a></p>
<p><a href="ftp://ftp.hq.nasa.gov/pub/ig/ccd/enhanced%5Floopback/" rel="nofollow">ftp://ftp.hq.nasa.gov/pub/ig/ccd/enhanced_loopback/</a></p>
http://stackoverflow.com/questions/1409474/get-information-about-afp-mountpoint-in-script0Get information about afp mountpoint in scriptTobias Hertkorn2009-09-11T07:28:36Z2009-09-11T07:28:36Z
<p>I have a couple of macs where the mnthome command does not return the servername/IP in the "Host DNS name:" line.</p>
<p>Two questions:</p>
<ol>
<li>Is there any other <em>scriptable</em> way to get the servername/IP of an AFP mount point.</li>
<li>Who has an idea why that is? </li>
</ol>
<p>Thanks!</p>
http://stackoverflow.com/questions/1378331/bash-script-umount-a-device-but-dont-fail-if-its-not-mounted1Bash Script - umount a device, but don't fail if it's not mounted?Rory2009-09-04T10:05:19Z2009-09-04T10:15:21Z
<p>I'm writing a bash script and I have <code>errexit</code> set, so that the script will die if any command doesn't return a 0 exit code, i.e. if any command doesn't complete successfully. This is to make sure that my bash script is robust.</p>
<p>I have to mount some filesystems, copy some files over, the umount it. I'm putting a <code>umount /mnt/temp</code> at the start so that it'll umount it before doing anything. However if it's not mounted then umount will fail and stop my script.</p>
<p>Is it possible to do a <code>umount --dont-fail-if-not-mounted /mnt/temp</code>? So that it will return 0 if the device isn't mounted? Like <code>rm -f</code>?</p>
http://stackoverflow.com/questions/1078938/mount-not-working-properly-on-cygwin0mount not working properly on CygwinCode Dance2009-07-03T11:24:55Z2009-08-16T22:47:54Z
<p>I have WinXP box and Cygwin installed on it. There are many network drive mapped on windows. when I execute mount command on windows (which uses the same mount executable as Cygwin) a get list of network mapped drives. But same when I do through Cygwin, I see only C: is mapped.</p>
<p>On Windows command prompt.</p>
<pre>
C:\CodeDance> mount
C:\cygwin\bin on /usr/bin type system (textmode)
C:\cygwin\lib on /usr/lib type system (textmode)
C:\cygwin on / type system (textmode)
c:\Own on /own type system (binmode)
v: on /cygdrive/v type system (binmode)
c: on /cygdrive/c type system (textmode,noumount)
k: on /cygdrive/k type system (textmode,noumount)
l: on /cygdrive/l type system (textmode,noumount)
m: on /cygdrive/m type system (textmode,noumount)
o: on /cygdrive/o type system (textmode,noumount)
x: on /cygdrive/x type system (textmode,noumount)
y: on /cygdrive/y type system (textmode,noumount)
z: on /cygdrive/z type system (textmode,noumount)
</pre>
<p>Cygwin, on bash</p>
<pre>
code@DANCE /cygdrive $ mount
C:\cygwin\bin on /usr/bin type system (textmode)
C:\cygwin\lib on /usr/lib type system (textmode)
C:\cygwin on / type system (textmode)
c:\Own on /own type system (binmode)
v: on /cygdrive/v type system (binmode)
c: on /cygdrive/c type system (textmode,noumount)
</pre>
<p>The /cygdrive/v that shown mounted above is not accessible either.</p>
http://stackoverflow.com/questions/1234490/mount-notifications-on-solaris-as-normal-user-not-root0Mount notifications on Solaris - as normal user (not root)cafebabe2009-08-05T16:59:06Z2009-08-06T08:37:04Z
<p>Does anyone know of a good (i.e. efficient) way of getting notifications of filesystem mounts/unmounts and/or new/removed devices in Solaris (10), without requiring root? </p>
<p>I'm trying to avoid simply polling /etc/mnttab for new/removed/changed entries, so my first prototype involved using <a href="http://docs.sun.com/app/docs/doc/816-5218/6mbcj7ntn?" rel="nofollow"><code>sysevent_subscribe_event</code></a> to listen for device events, and then using the device information in conjunction with /etc/mnttab to get the mount point. That works well, but <a href="http://docs.sun.com/app/docs/doc/816-5218/6mbcj7ntn?" rel="nofollow"><code>sysevent_subscribe_event</code></a> requires root privileges to run, and I'm not going to have access to the end-user's box, so I can't really elevate their privileges.</p>
<p>I imagine this could be quite tricky, given the restriction of running without root, but any help gratefully received!</p>
http://stackoverflow.com/questions/1221428/mounting-problem0Mounting Problem [closed]Jaby2009-08-03T09:33:33Z2009-08-03T09:33:33Z
<p>Hi,</p>
<p>When I ran this command</p>
<p>mount -t cifs //192.168.10.1/ycw /mnt -o rw,user=testuser,password=testpass</p>
<p>I got mount error 112 "Host is Down" when tried to do directory mount from Debian machine to Centos machine.</p>
<p>Can anyone have idea to resolving this mount problem?</p>
<p>Waiting for the reply.</p>
<p>Jaby</p>
http://stackoverflow.com/questions/1206606/mounting-encrypted-drive-partition-on-linux0Mounting encrypted drive/partition on Linux [closed]Mohit Nanda2009-07-30T13:26:57Z2009-07-30T13:36:33Z
<p>I have a Laptop, on which the OS has got corrupted and gives a system32\config not found error.</p>
<p>To recover my data, I can boot it using Knoppix but I am not able to mount my partition.</p>
<p>My partition is NTFS encrypted with McAfee Endpoint encryption. is there any way I can mount this partition with/without specifying the password?</p>
http://stackoverflow.com/questions/1142286/using-a-bash-script-on-a-mac-to-connect-to-network-shares0Using a bash script on a Mac to connect to network shares?Gary Willoughby2009-07-17T09:34:21Z2009-07-17T10:13:24Z
<p>I'm using a Mac at work and would like some network shares mounting when i start the computer. Can i use a bash script (or similar) to connect and mount these shares? The shares are from both Windows and Mac servers and we usually connect using IP addresses.</p>
http://stackoverflow.com/questions/1138383/python-get-mount-point-on-windows-or-linux0Python: Get Mount Point on Windows or Linuxnoahd2009-07-16T15:20:01Z2009-07-16T20:59:43Z
<p>I need a function to determine if a directory is a mount point for a drive.
I found this code already which works well for linux:</p>
<pre><code>def getmount(path):
path = os.path.abspath(path)
while path != os.path.sep:
if os.path.ismount(path):
return path
path = os.path.abspath(os.path.join(path, os.pardir))
return path
</code></pre>
<p>But I'm not sure how I would get this to work on windows. Can I just assume the mount point is the drive letter (e.g. C:)? I believe it is possible to have a network mount on windows so I'd like to be able to detect that mount as well.</p>
http://stackoverflow.com/questions/1138947/automount-android-as-usb-mass-storage0automount android as usb mass storage [closed]unknown (google)2009-07-16T17:02:29Z2009-07-16T17:02:29Z
<p>when connecting the android device to pc, it prompts to mount it as usb mass
storage. is there a way to force it to auto mount it?</p>
http://stackoverflow.com/questions/1111873/jetty-mount-to-a-directory-on-a-different-host0Jetty: Mount to a directory on a different hostjettyQuestion2009-07-10T20:40:57Z2009-07-11T15:33:47Z
<p>I'm looking to map to a directory on a different host using Jetty/Maven when working locally. I've found you can do this w/ Apache using mod_jk (JkMount/JkUnMount), but haven't figured it how to do the same on jetty.</p>
<p>On our dev/q/live servers, we have Apache in front of JBoss and use mod_jk to do this. Locally, we're using jetty</p>
<p>To give you an idea of what I'm talking about, this is how you would configure Apache to accomplish this:</p>
<h2>in httpd.conf:</h2>
<p>JkMount /images/* host2</p>
<p>JkMount /* host2</p>
<p>JkUnMount /images/* host1</p>
<h2>workers.properties:</h2>
<p>worker.list=host2,host1</p>
<p>worker.host2.host=host-2.theDomain.com</p>
<p>worker.host2.port=46654</p>
<p>worker.host1.host=host-1.theDomain.com</p>
<p>worker.host1.port=46655</p>
<p>Is there a way to configure Jetty to do the same thing?</p>
<p>Btw, locally, I'm using the Maven plugin for Eclipse if that makes a difference.</p>
<p>thanks!</p>
http://stackoverflow.com/questions/1101039/mounting-and-untaring-a-file-in-java0Mounting and untar'ing a file in JavaMatthew2009-07-08T23:12:50Z2009-07-09T17:35:43Z
<p>Hello all,</p>
<p>I'm currently working on a web application that involves mounting a drive and extracting a tar.gz file, all in Java. Since the application runs in a linux environment, I figured I'd try using unix commands like "mount" and "tar".</p>
<pre><code>Runtime runtime = Runtime.getRuntime();
Process proc;
String mountCommand = "mount -t cifs -o username=...";
String extractCommand = "tar xzf ..."
proc = runtime.exec(mountCommand);
proc.waitFor();
proc = runtime.exec(extractCommand);
proc.waitFor();
</code></pre>
<p>Running the mount command and extract command in the terminal works fine, but fails when FIRST run in java. The second proc.waitFor() returns exit code 2. However, running this code after the first failed attempt works fine. I have a feeling that the problem is that waitFor() isn't waiting until the mount command is fully completed. Am I missing anything important in my code?</p>
<p>Also, I'd rather do this all in Java, but I had a really hard time figuring out how to untar a file, so I'm taking this approach. (oh if anyone can tell me how to do this i would be very happy). Any suggestions would be muuuuuuuuuuch appreciated!</p>
http://stackoverflow.com/questions/624154/linux-which-process-is-causing-device-busy-when-doing-umount4Linux: Which process is causing "device busy" when doing umount?flybywire2009-03-08T19:39:37Z2009-07-05T17:51:55Z
<p>Linux: Which process is causing "device busy" when doing umount?</p>
http://stackoverflow.com/questions/615900/any-ideas-why-this-nfs-setup-wont-work-1Any ideas why this NFS setup won't work?blackrobot2009-03-05T18:11:20Z2009-05-13T21:06:44Z
<p>I set up an NFS server on my CentOS box with this for the /etc/exports file:</p>
<pre><code>/var/www 192.168.0.0/24(rw,sync,no_root_squash)
</code></pre>
<p>Then on my Ubuntu machine, I ran:</p>
<pre>
# cd ~/
root@bill-murray:~# mount -v 192.168.0.21:/var/www ash
mount: no type was given - I'll assume nfs because of the colon
mount.nfs: timeout set for Thu Mar 5 13:27:59 2009
mount.nfs: text-based options: 'addr=192.168.0.21'
mount.nfs: internal error
</pre>
<p>I've wracked my brain trying to figure out what is causing the problem. Any ideas?!</p>
http://stackoverflow.com/questions/760310/how-to-mark-a-device-in-a-way-that-can-be-retrived-by-hal-but-does-not-require-mo1How to mark a device in a way that can be retrived by HAL but does not require mounting or changing the label.lfaraone2009-04-17T12:58:48Z2009-04-17T15:42:35Z
<p>I'm trying to find a way to mark a USB flash device in a way that I can programmaticly test for without mounting it or changing the label. </p>
<p>Are there any properties I can modify about a device that will not cause it to behave/look differently to the user?</p>
<p>Running Ubuntu Jaunty.</p>
http://stackoverflow.com/questions/730589/how-to-create-loop-in-linux-filesystem1how to create loop in linux filesystemsuresh2009-04-08T15:43:38Z2009-04-08T17:57:08Z
<p>how to create a loop in linux filesystem ? I want to break the directed acyclic graph(DAG) property of linux file system.. Is it possible?... I have seen this condition(loop in filesystem) once when I installed scratchbox cross compilier in my ubuntu linux distro... .. I dunno how to reproduce it now... </p>
http://stackoverflow.com/questions/723778/os-x-which-volume-is-a-dvd0OS X: which volume is a DVD?Mark Harrison2009-04-07T00:50:18Z2009-04-07T01:11:38Z
<p>How can I programmatically determine which (if any) mounted volumes are a DVD?</p>
<p>I currently look for a directory with permissions 555 but I would prefer something a bit less hacky. Thanks!!</p>
<pre><code>$ ls -l /Volumes/
total 12
dr-xr-xr-x 4 mh gfx 136 Aug 3 2001 DQRMX2102
lrwxr-xr-x 1 root admin 1 Apr 6 15:09 Macintosh HD -> /
drwxrwxr-x 9 mh gfx 374 Feb 3 12:55 data
</code></pre>
http://stackoverflow.com/questions/716958/why-i-can-not-ban-the-operation-of0Why I can not ban the operation of Xiaoping2009-04-04T12:02:30Z2009-04-04T12:05:11Z
<p>I write a driver to attach on MountPointManager and filter all IOCTL_MOUNTMGR_DELETE_POINTS IRP. But after I return this IRP with code below, I see no volume letter left.</p>
<pre><code>Irp->IoStatus.Status=STATUS_INVALID_PARAMETER;
Irp->IoStatus.Information=0;
IoCompleteRequest(Irp,IO_NO_INCREMENT);
return STATUS_ACCESS_DENIED;
</code></pre>
<p>Anyone could help me? Thanks a lot.</p>
http://stackoverflow.com/questions/679724/export-rootfs-or-tmpfs0Export rootfs or tmpfsunknown (google)2009-03-24T23:49:27Z2009-03-25T18:40:37Z
<p>Is it possible to export (for nfs mounting) tmpfs or rootfs directories?
I have many linux nodes which are booted into a ram based filesystem with just rootfs and tmpfs. I want each node to see some files in the other nodes, so I am trying to export some directory and trying to mount on another node.
I see the following error in /var/log/messages of the nfs server -
rpc.mountd: getfh failed: No such file or directory</p>
<p>I have read that one cannot export tmpfs. Is the same true for rootfs? What options do I have?</p>
http://stackoverflow.com/questions/640354/read-header-data-from-files-on-remote-server0Read header data from files on remote serverrejeep2009-03-12T20:29:37Z2009-03-13T14:00:33Z
<p>Hi!</p>
<p>I'm working on a project right now where I need to read header data from files on remote servers. I'm talking about many and large files so I cant read whole files, but just the header data I need.</p>
<p>The only solution I have is to mount the remote server with fuse and then read the header from the files as if they where on my local computer. I've tried it and it works. But it has some drawbacks. Specially with FTP:</p>
<ul>
<li>Really slow (FTP is compared to SSH with curlftpfs). From same server, with SSH 90 files was read in 18 seconds. And with FTP 10 files in 39 seconds.</li>
<li>Not dependable. Sometimes the mountpoint will not be unmounted.</li>
<li>If the server is active and a passive mounting is done. That mountpoint and the parent folder gets locked in about 3 minutes.</li>
<li>Does timeout, even when there's data transfer going (guess this is the FTP-protocol and not curlftpfs).</li>
</ul>
<p>Fuse is a solution, but I don't like it very much because I don't feel that I can trust it. So my question is basically if there's any other solutions to the problem. Language is preferably Ruby, but any other will work if Ruby does not support the solution.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/637372/how-can-i-mount-a-remote-directory-on-my-computer2How can I mount a remote directory on my computer?Frank2009-03-12T04:32:38Z2009-03-12T05:06:27Z
<p>I have all my code and data on my computer at work. But often I work from home, so I <code>ssh</code> into the work computer, connect to my <code>GNU</code> <code>screen</code> session (which includes a text-based <code>emacs</code>) and start hacking, compiling, etc. </p>
<p>This can get a bit annoying sometimes, especially if my connection is <em>slow</em>, and the remote emacs lags behind my typing. Also, it would be nice to use an IDE to work on the code.</p>
<p>Is there a solution? Sure, I could <em>sync</em> the code with <code>rsync</code> or <code>svn</code>, but then I think I have too many directories scattered around, lots of data that I don't want to copy around etc. And I always want to compile and run remotely (because the work computers are fast and plenty), but coding and typing itself would be better on my home computer.</p>
<p>Can I <em>mount</em> my remote home directory on my local computer? What do I need for this to work? Would I need my sysadmin for this? (I'd rather not, because he usually doesn't reply e-mails, or is unwilling to do anything that people ask him.) Can I do something with <code>VPN</code>? How do <em>you</em> do it when you work from home?</p>
<p>(As for the security restrictions, right now I can <code>ssh</code> and <code>scp</code>, but not <code>telnet</code> or <code>ftp</code>.)</p>
<p><strong>UPDATE:</strong> I have a Mac at home, and Linux at work.</p>
http://stackoverflow.com/questions/494022/how-to-detect-ntfs-mounted-folders-in-c1How to detect NTFS mounted folders in C#?NoizWaves2009-01-30T00:04:46Z2009-01-30T18:39:40Z
<p>Once upon a time I read how you detect programmatically for mounted NTFS folders (can cause cyclic recursion when searching through folders). Now i cannot find the link.. Does anyone know how to do this?</p>
<p>The mounting I am interested in detecting is when one folder is mounted to another folder.</p>