मुझे बस उसी चीज़ की आवश्यकता थी जो ओपी पूछ रहा है और Google पर खोज करने और उत्तर पढ़ने के बाद, उनमें से कोई भी प्रदान नहीं करता है जो मुझे लगता है कि ओपी और मैं देख रहे हैं।
यहां समस्या यह है कि कोई नेटवर्क शेयर को मैप कर सकता है Drive Y
जबकि संगठन में किसी अन्य व्यक्ति के पास उसी नेटवर्क साझा मैप हो सकता है Drive X
; इसलिए, इस तरह के एक लिंक भेजने के रूप में Y:\mydirectory
मेरे अलावा किसी और के लिए काम नहीं कर सकता।
जैसा कि ओपी बताते हैं, एक्सप्लोरर एक्सप्लोरर बार में वास्तविक पथ दिखाता है, लेकिन आप इसे कॉपी नहीं कर सकते (टाइपिंग थकाऊ है और त्रुटियों के लिए प्रवण है, इसलिए यह copy as path
संदर्भ मेनू से चुनने पर भी नहीं है) :
इसलिए मैं जिस समाधान के साथ आया था (किसी और के कोड को कॉपी करके) एक छोटा सी # प्रोग्राम था जिसे आप एक्सप्लोरर में एक संदर्भ मेनू से कॉल कर सकते हैं और आपको मैप किए गए ड्राइव पत्र को वास्तविक में अनुवाद करने की अनुमति देगा UNC path
।
यहाँ कोड है:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Utils
{
//This is the only piece of code I wrote
class Program
{
[STAThread]
static void Main(string[] args)
{
//Takes the parameter from the command line. Since this will
//be called from the context menu, the context menu will pass it
//via %1 (see registry instructions below)
if (args.Length == 1)
{
Clipboard.SetText(Pathing.GetUNCPath(args[0]));
}
else
{
//This is so you can assign a shortcut to the program and be able to
//Call it pressing the shortcut you assign. The program will take
//whatever string is in the Clipboard and convert it to the UNC path
//For example, you can do "Copy as Path" and then press the shortcut you
//assigned to this program. You can then press ctrl-v and it will
//contain the UNC path
Clipboard.SetText(Pathing.GetUNCPath(Clipboard.GetText()));
}
}
}
}
और यहाँ Pathing
वर्ग परिभाषा है (मैं वास्तविक स्रोत को खोजने की कोशिश करूँगा क्योंकि मुझे याद नहीं है कि मुझे यह कहाँ मिला है):
public static class Pathing
{
[DllImport("mpr.dll", CharSet = CharSet.Unicode, SetLastError = true)]
public static extern int WNetGetConnection(
[MarshalAs(UnmanagedType.LPTStr)] string localName,
[MarshalAs(UnmanagedType.LPTStr)] StringBuilder remoteName,
ref int length);
/// <summary>
/// Given a path, returns the UNC path or the original. (No exceptions
/// are raised by this function directly). For example, "P:\2008-02-29"
/// might return: "\\networkserver\Shares\Photos\2008-02-09"
/// </summary>
/// <param name="originalPath">The path to convert to a UNC Path</param>
/// <returns>A UNC path. If a network drive letter is specified, the
/// drive letter is converted to a UNC or network path. If the
/// originalPath cannot be converted, it is returned unchanged.</returns>
public static string GetUNCPath(string originalPath)
{
StringBuilder sb = new StringBuilder(512);
int size = sb.Capacity;
// look for the {LETTER}: combination ...
if (originalPath.Length > 2 && originalPath[1] == ':')
{
// don't use char.IsLetter here - as that can be misleading
// the only valid drive letters are a-z && A-Z.
char c = originalPath[0];
if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'))
{
int error = WNetGetConnection(originalPath.Substring(0, 2),
sb, ref size);
if (error == 0)
{
DirectoryInfo dir = new DirectoryInfo(originalPath);
string path = Path.GetFullPath(originalPath)
.Substring(Path.GetPathRoot(originalPath).Length);
return Path.Combine(sb.ToString().TrimEnd(), path);
}
}
}
return originalPath;
}
}
आप प्रोग्राम का निर्माण करते हैं और निष्पादन योग्य को अपने पीसी में कहीं रख देते हैं, उदाहरण के लिए कहें c:\Utils
अब आप एक्सप्लोरर में संदर्भ मेनू विकल्प जोड़ सकते हैं:
Regedit और फिर:
HKEY_CLASSES_ROOT\*\Directory\Shell
Right-click Shell --> New Key --> Name: "To UNC Path"
Right-click To UNC Path --> New Key --> Name: command
Right-click Default entry and select `Modify`
Value Data: c:\Utils\Utils.exe "%1"
आप कर चुके हैं। अब आप इस विकल्प को देखेंगे जब आप मैप किए गए ड्राइव से डायरेक्टरी पर राइट-क्लिक करेंगे:
ध्यान दें
मैं निष्पादन योग्य प्रदान कर सकता हूं ताकि आपको संकलन स्वयं न करना पड़े। बस मुझे एक नोट यहाँ छोड़ दो।