Index: /trunk/BNC/bncrinex.cpp
===================================================================
--- /trunk/BNC/bncrinex.cpp	(revision 152)
+++ /trunk/BNC/bncrinex.cpp	(revision 153)
@@ -39,4 +39,15 @@
   _rnxScriptName = settings.value("rnxScript").toString();
   expandEnvVar(_rnxScriptName);
+
+  // Find the corresponding mountPoint
+  // ---------------------------------
+  QListIterator<QString> it(settings.value("mountPoints").toStringList());
+  while (it.hasNext()) {
+    QString hlp = it.next();
+    if (hlp.indexOf(_statID) != -1) {
+      _mountPoint = hlp;
+      break;
+    }
+  }
 }
 
Index: /trunk/BNC/bncrinex.h
===================================================================
--- /trunk/BNC/bncrinex.h	(revision 152)
+++ /trunk/BNC/bncrinex.h	(revision 153)
@@ -34,4 +34,5 @@
    QString             _rnxScriptName;
    QProcess            _rnxScript;
+   QString             _mountPoint;
 };
 
