जांचें कि क्या एक स्ट्रिंग एक वैध विंडोज निर्देशिका (फ़ोल्डर) पथ है


84

मैं यह निर्धारित करने की कोशिश कर रहा हूं कि क्या उपयोगकर्ता द्वारा स्ट्रिंग इनपुट फ़ोल्डर में पथ का प्रतिनिधित्व करने के लिए मान्य है। मान्य होने से मेरा मतलब ठीक से स्वरूपित है।

मेरे आवेदन में, फ़ोल्डर एक स्थापना गंतव्य का प्रतिनिधित्व करता है। बशर्ते कि फ़ोल्डर पथ है वैध, मैं निर्धारित करने के लिए यदि फ़ोल्डर मौजूद चाहते हैं, और इसे बनाने के अगर ऐसा नहीं होता।

मैं वर्तमान में उपयोग कर रहा हूं IO.Directory.Exists( String path )। मुझे लगता है कि यह ठीक काम करता है सिवाय इसके जब उपयोगकर्ता स्ट्रिंग को ठीक से प्रारूपित नहीं करता है। जब ऐसा होता है, तो यह विधि गलत वापस आ जाएगी जो इंगित करती है कि फ़ोल्डर मौजूद नहीं है। लेकिन यह एक समस्या है क्योंकि मैं बाद में फ़ोल्डर नहीं बना पाऊंगा।

मेरे googling से मुझे यह देखने के लिए एक नियमित अभिव्यक्ति का उपयोग करने का सुझाव मिला कि क्या प्रारूप उचित है। मुझे नियमित अभिव्यक्ति के साथ कोई अनुभव नहीं है, और मैं सोच रहा हूं कि यह एक व्यवहार्य दृष्टिकोण है। यहाँ मैं क्या पाया:

Regex r = new Regex( @"^(([a-zA-Z]\:)|(\\))(\\{1}|((\\{1})[^\\]([^/:*?<>""|]*))+)$" );
return r.IsMatch( path );

के साथ संयोजन में एक नियमित अभिव्यक्ति परीक्षण होगा Directory.Exists(), मुझे यह जांचने के लिए एक अच्छा पर्याप्त तरीका दे कि क्या मार्ग वैध है और क्या यह मौजूद है? मुझे पता है कि यह ओएस और अन्य कारकों के साथ अलग-अलग होगा, लेकिन कार्यक्रम केवल विंडोज उपयोगकर्ताओं के लिए लक्षित है ।


1
यदि यह निर्देशिका बनाने के बाद निर्देशिका नहीं बनाता है। विशेषज्ञ गलत रिटर्न देता है, तो क्या यह एक अच्छा संकेत नहीं है कि उपयोगकर्ता खराब इनपुट प्रदान करता है?
रॉबर्ट हार्वे



2
@ रोबर्टी ने उस प्रश्न को देखा और इसने सामान्य नियमों के अलावा कोई विशिष्ट उत्तर नहीं दिया। दूसरा उच्चतम उत्तर स्वरूपण को कवर नहीं करता था, लेकिन केवल अमान्य वर्ण। इसके अलावा Directory.Exists विधि झूठी वापस आ सकती है, लेकिन जब से मैं मौके पर फ़ोल्डर बनाने का विकल्प चाहता हूं, मैं बस उस द्वारा नहीं जा सकता।
पुद्दपुदुक

@Robert आपके द्वारा जुड़े 2 विषय पर - एक शब्द में टाइप करने पर भी उस प्रश्न के उत्तर में दी गई मान्यता समाप्त हो जाएगी।
पुदपडुक

जवाबों:


116

पुकार Path.GetFullPath; यदि पथ अमान्य है, तो यह अपवादों को फेंक देगा।

रिश्तेदार पथ (जैसे Word) को अस्वीकार करने के लिए , कॉल करें Path.IsPathRooted


मुझे पता था कि कुछ सरल था! और धन्यवाद, मैंने पथ-संबंधी-सापेक्ष समस्या के बारे में नहीं सोचा था।
पुदुपुकुक

2
धन्यवाद SLaks मैंने कई डुप्लिकेट देखे हैं, और कई Google खोजें (एक से अधिक अवसरों पर) की हैं, लेकिन यह पहली बार है जब मैंने इस विशेष प्रश्न का अच्छा उत्तर देखा है।
रॉबर्ट हार्वे

5
Path.GetFullPath ("con.txt") एक मान्य फ़ाइल नाम है।
क्रिस्टोफर

8
@Slaks यह एक टिप्पणी छोड़ने के लिए बहुत पुराना है, लेकिन मैं अभी भी यहां एक कारण छोड़ना चाहता हूं क्योंकि मैंने आपको अपना वोट -1 दिया था। Path.GetFullPath () ठीक काम करने के लिए लगता है, लेकिन क्या होगा यदि पथ है: "Z: \\\\\\\\ Hi \\\\\\", यह एक वैध निरपेक्ष पथ नहीं है, लेकिन Path.GetGullPath (...) परिणाम देता है: Z: \ Hi \ There और कोई अपवाद नहीं उठाया गया है। मुझे GetFullPath () और इस तरह के मूल स्ट्रिंग द्वारा लौटाए गए स्ट्रिंग की तुलना करके इसे थोड़ा बदलना पड़ा: प्राइवेट बूल IsPathValid (स्ट्रिंग पथ) {try {string fullPath = Path.GetFullPath (पथ); fullPath == पथ; } {{झूठा लौटें;}} पकड़ें
राजा राजा

4
@KingKing इस लिनक्स से unix.stackexchange.com पर जवाब : "एकाधिक स्लैश की अनुमति है और एक स्लैश के बराबर हैं .." मैंने विंडोज पर एक ही अवलोकन किया है (हालांकि एक UNC पथ में अग्रणी स्लैश को अलग तरह से व्यवहार किया जा सकता है)। इसके प्रमाण के लिए, कमांड प्रॉम्प्ट में, यह प्रयास करें cd C:\\\\\\\Windows\\\\\\\System32:। विंडोज के लिए, मुझे एक आधिकारिक स्रोत नहीं मिल सकता है जो इस व्यवहार का दस्तावेजीकरण करता है, लेकिन निश्चित रूप से एक सूचक का स्वागत करेगा।
डेविड आरआर

20

मैं वास्तव में SLaks से असहमत हूं। वह समाधान मेरे काम नहीं आया। अपेक्षा के अनुसार अपवाद नहीं हुआ। लेकिन इस कोड ने मेरे लिए काम किया:

if(System.IO.Directory.Exists(path))
{
    ...
}

62
एक मान्य पथ आवश्यक रूप से एक निर्देशिका नहीं है जो मौजूद है ... जो कि वास्तव में यहाँ पूछी गई समस्या है
बेनलिट्ज़

1
प्रश्न पथ स्ट्रिंग के सत्यापन से संबंधित था, एक पथ जो मौजूद नहीं हो सकता है।
मुबाशर

मुझे लगता है कि यह तरीका सही है। अपवाद की अपेक्षा नहीं की जानी चाहिए। यह विधि दिए गए पथ में गलत वर्णों की भी जाँच करती है।
यूजीन मकसिमोव

यह स्थिति स्वयं एक अपवाद फेंक देगी यदि निर्देशिका "पथ" को निर्देशिका से वास्तविक पथ नहीं मिला है।
एम। फवाद सुरोश

पूरी तरह से गलत जवाब! मुझे आश्चर्य है कि इसे 32 अपवोट्स (अब तक) कैसे प्राप्त हुए। उन लोगों द्वारा किया जाना चाहिए जो उस समस्या के लिए गलत जगह देख रहे थे जो वे सामना कर रहे थे, और वे इस पर ठोकर खा गए।
Sain19ошƒаӽ

13

Path.GetFullPath केवल अपवाद देता है

ArgumentException पथ एक शून्य-लंबाई वाली स्ट्रिंग है, जिसमें केवल सफेद स्थान होता है, या GetInvalidPathChars में परिभाषित एक या अधिक अमान्य वर्ण होते हैं। -या- सिस्टम निरपेक्ष पथ प्राप्त नहीं कर सका।

SecurityException कॉलर के पास आवश्यक अनुमतियाँ नहीं हैं।

ArgumentNullException पथ अशक्त है।

NotSupportedException पथ में एक बृहदान्त्र (":") शामिल है जो वॉल्यूम पहचानकर्ता का हिस्सा नहीं है (उदाहरण के लिए, "c: \")।

PathTooLongException निर्दिष्ट पथ, फ़ाइल नाम या सिस्टम-निर्धारित अधिकतम लंबाई दोनों से अधिक है। उदाहरण के लिए, विंडोज-आधारित प्लेटफार्मों पर, पथ 248 वर्णों से कम होने चाहिए, और फ़ाइल नाम 260 वर्णों से कम होने चाहिए।

वैकल्पिक तरीका निम्नलिखित का उपयोग करना है:

/// <summary>
/// Validate the Path. If path is relative append the path to the project directory by default.
/// </summary>
/// <param name="path">Path to validate</param>
/// <param name="RelativePath">Relative path</param>
/// <param name="Extension">If want to check for File Path</param>
/// <returns></returns>
private static bool ValidateDllPath(ref string path, string RelativePath = "", string Extension = "")
{
    // Check if it contains any Invalid Characters.
    if (path.IndexOfAny(Path.GetInvalidPathChars()) == -1)
    {
        try
        {
            // If path is relative take %IGXLROOT% as the base directory
            if (!Path.IsPathRooted(path))
            {
                if (string.IsNullOrEmpty(RelativePath))
                {
                    // Exceptions handled by Path.GetFullPath
                    // ArgumentException path is a zero-length string, contains only white space, or contains one or more of the invalid characters defined in GetInvalidPathChars. -or- The system could not retrieve the absolute path.
                    // 
                    // SecurityException The caller does not have the required permissions.
                    // 
                    // ArgumentNullException path is null.
                    // 
                    // NotSupportedException path contains a colon (":") that is not part of a volume identifier (for example, "c:\"). 
                    // PathTooLongException The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters.

                    // RelativePath is not passed so we would take the project path 
                    path = Path.GetFullPath(RelativePath);

                }
                else
                {
                    // Make sure the path is relative to the RelativePath and not our project directory
                    path = Path.Combine(RelativePath, path);
                }
            }

            // Exceptions from FileInfo Constructor:
            //   System.ArgumentNullException:
            //     fileName is null.
            //
            //   System.Security.SecurityException:
            //     The caller does not have the required permission.
            //
            //   System.ArgumentException:
            //     The file name is empty, contains only white spaces, or contains invalid characters.
            //
            //   System.IO.PathTooLongException:
            //     The specified path, file name, or both exceed the system-defined maximum
            //     length. For example, on Windows-based platforms, paths must be less than
            //     248 characters, and file names must be less than 260 characters.
            //
            //   System.NotSupportedException:
            //     fileName contains a colon (:) in the middle of the string.
            FileInfo fileInfo = new FileInfo(path);

            // Exceptions using FileInfo.Length:
            //   System.IO.IOException:
            //     System.IO.FileSystemInfo.Refresh() cannot update the state of the file or
            //     directory.
            //
            //   System.IO.FileNotFoundException:
            //     The file does not exist.-or- The Length property is called for a directory.
            bool throwEx = fileInfo.Length == -1;

            // Exceptions using FileInfo.IsReadOnly:
            //   System.UnauthorizedAccessException:
            //     Access to fileName is denied.
            //     The file described by the current System.IO.FileInfo object is read-only.-or-
            //     This operation is not supported on the current platform.-or- The caller does
            //     not have the required permission.
            throwEx = fileInfo.IsReadOnly;

            if (!string.IsNullOrEmpty(Extension))
            {
                // Validate the Extension of the file.
                if (Path.GetExtension(path).Equals(Extension, StringComparison.InvariantCultureIgnoreCase))
                {
                    // Trim the Library Path
                    path = path.Trim();
                    return true;
                }
                else
                {
                    return false;
                }
            }
            else
            {
                return true;

            }
        }
        catch (ArgumentNullException)
        {
            //   System.ArgumentNullException:
            //     fileName is null.
        }
        catch (System.Security.SecurityException)
        {
            //   System.Security.SecurityException:
            //     The caller does not have the required permission.
        }
        catch (ArgumentException)
        {
            //   System.ArgumentException:
            //     The file name is empty, contains only white spaces, or contains invalid characters.
        }
        catch (UnauthorizedAccessException)
        {
            //   System.UnauthorizedAccessException:
            //     Access to fileName is denied.
        }
        catch (PathTooLongException)
        {
            //   System.IO.PathTooLongException:
            //     The specified path, file name, or both exceed the system-defined maximum
            //     length. For example, on Windows-based platforms, paths must be less than
            //     248 characters, and file names must be less than 260 characters.
        }
        catch (NotSupportedException)
        {
            //   System.NotSupportedException:
            //     fileName contains a colon (:) in the middle of the string.
        }
        catch (FileNotFoundException)
        {
            // System.FileNotFoundException
            //  The exception that is thrown when an attempt to access a file that does not
            //  exist on disk fails.
        }
        catch (IOException)
        {
            //   System.IO.IOException:
            //     An I/O error occurred while opening the file.
        }
        catch (Exception)
        {
            // Unknown Exception. Might be due to wrong case or nulll checks.
        }
    }
    else
    {
        // Path contains invalid characters
    }
    return false;
}

9

यहाँ एक समाधान है कि के उपयोग का लाभ उठाता है है Path.GetFullPath के रूप में सिफारिश की @SLaks से जवाब

कोड जिसमें मैं यहां शामिल हूं, ध्यान दें कि IsValidPath(string path)इस तरह से डिज़ाइन किया गया है कि कॉलर को अपवाद से निपटने के बारे में चिंता करने की आवश्यकता नहीं है ।

तुम भी मिल सकता है विधि है कि यह कहता है, कि TryGetFullPath(...), यह भी अपने आप ही योग्यता है जब आप सुरक्षित रूप से एक पाने के लिए प्रयास करने के लिए इच्छा निरपेक्ष पथ

/// <summary>
/// Gets a value that indicates whether <paramref name="path"/>
/// is a valid path.
/// </summary>
/// <returns>Returns <c>true</c> if <paramref name="path"/> is a
/// valid path; <c>false</c> otherwise. Also returns <c>false</c> if
/// the caller does not have the required permissions to access
/// <paramref name="path"/>.
/// </returns>
/// <seealso cref="Path.GetFullPath"/>
/// <seealso cref="TryGetFullPath"/>
public static bool IsValidPath(string path)
{
    string result;
    return TryGetFullPath(path, out result);
}

/// <summary>
/// Returns the absolute path for the specified path string. A return
/// value indicates whether the conversion succeeded.
/// </summary>
/// <param name="path">The file or directory for which to obtain absolute
/// path information.
/// </param>
/// <param name="result">When this method returns, contains the absolute
/// path representation of <paramref name="path"/>, if the conversion
/// succeeded, or <see cref="String.Empty"/> if the conversion failed.
/// The conversion fails if <paramref name="path"/> is null or
/// <see cref="String.Empty"/>, or is not of the correct format. This
/// parameter is passed uninitialized; any value originally supplied
/// in <paramref name="result"/> will be overwritten.
/// </param>
/// <returns><c>true</c> if <paramref name="path"/> was converted
/// to an absolute path successfully; otherwise, false.
/// </returns>
/// <seealso cref="Path.GetFullPath"/>
/// <seealso cref="IsValidPath"/>
public static bool TryGetFullPath(string path, out string result)
{
    result = String.Empty;
    if (String.IsNullOrWhiteSpace(path)) { return false; }
    bool status = false;

    try
    {
        result = Path.GetFullPath(path);
        status = true;
    }
    catch (ArgumentException) { }
    catch (SecurityException) { }
    catch (NotSupportedException) { }
    catch (PathTooLongException) { }

    return status;
}

6

इस कोड का उपयोग करें

string DirectoryName = "Sample Name For Directory Or File";
Path.GetInvalidFileNameChars()
  .Where(x => DirectoryName.Contains(x))
  .Count() > 0 || DirectoryName == "con"

4
एक ही चीज़ को पूरा करने वाला थोड़ा कम कोड: Path.GetInvalidFileNameChars().Any(DirectoryName.Contains) || DirectoryName == "con"
bsegraves

2
@nawfal वास्तव में। से नामकरण फ़ाइलें, पथ और नेमस्पेस MSDN पर: "एक फ़ाइल का नाम निम्नलिखित आरक्षित नाम का उपयोग न करें: CON, PRN, AUX, NUL, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, और LPT9। इसके अलावा इन नामों से तुरंत बचें एक एक्सटेंशन के बाद, उदाहरण के लिए, NUL.txt की सिफारिश नहीं की जाती है। अधिक जानकारी के लिए, Namespaces देखें । "
डेविड आरआर

यह "ब्लैकलिस्ट aproach" हर विंडोज़ सिस्टम पर काम नहीं करता है, उदाहरण के लिए जब एक चित्रचित्र दिखाता है: en.wikipedia.org/wiki/M
Jan

4
    private bool IsValidPath(string path)
    {
        Regex driveCheck = new Regex(@"^[a-zA-Z]:\\$");
        if (!driveCheck.IsMatch(path.Substring(0, 3))) return false;
        string strTheseAreInvalidFileNameChars = new string(Path.GetInvalidPathChars());
        strTheseAreInvalidFileNameChars += @":/?*" + "\"";
        Regex containsABadCharacter = new Regex("[" + Regex.Escape(strTheseAreInvalidFileNameChars) + "]");
        if (containsABadCharacter.IsMatch(path.Substring(3, path.Length - 3)))
            return false;

        DirectoryInfo dir = new DirectoryInfo(Path.GetFullPath(path));
        if (!dir.Exists)
            dir.Create();
        return true;
    }

3

मुझे इस कोड से कोई समस्या नहीं है:

private bool IsValidPath(string path, bool exactPath = true)
{
    bool isValid = true;

    try
    {
        string fullPath = Path.GetFullPath(path);

        if (exactPath)
        {
            string root = Path.GetPathRoot(path);
            isValid = string.IsNullOrEmpty(root.Trim(new char[] { '\\', '/' })) == false;
        }
        else
        {
            isValid = Path.IsPathRooted(path);
        }
    }
    catch(Exception ex)
    {
        isValid = false;
    }

    return isValid;
}

उदाहरण के लिए ये गलत वापस आएंगे:

IsValidPath("C:/abc*d");
IsValidPath("C:/abc?d");
IsValidPath("C:/abc\"d");
IsValidPath("C:/abc<d");
IsValidPath("C:/abc>d");
IsValidPath("C:/abc|d");
IsValidPath("C:/abc:d");
IsValidPath("");
IsValidPath("./abc");
IsValidPath("/abc");
IsValidPath("abc");
IsValidPath("abc", false);

और ये सच होंगे:

IsValidPath(@"C:\\abc");
IsValidPath(@"F:\FILES\");
IsValidPath(@"C:\\abc.docx\\defg.docx");
IsValidPath(@"C:/abc/defg");
IsValidPath(@"C:\\\//\/\\/\\\/abc/\/\/\/\///\\\//\defg");
IsValidPath(@"C:/abc/def~`!@#$%^&()_-+={[}];',.g");
IsValidPath(@"C:\\\\\abc////////defg");
IsValidPath(@"/abc", false);

0

एक सरल ओएस-स्वतंत्र समाधान।

public static class PathHelper
{
    public static void ValidatePath(string path)
    {
        if (!Directory.Exists(path))
            Directory.CreateDirectory(path).Delete();
    }
}

उपयोग:

try
{
    PathHelper.ValidatePath(path);
}
catch(Exception e)
{
    // handle exception
}

Directory.CreateDirectory() निम्नलिखित सभी स्थितियों में स्वचालित रूप से फेंक देंगे:

System.IO.IOException:
पथ द्वारा निर्दिष्ट निर्देशिका एक फ़ाइल है। -या- नेटवर्क नाम ज्ञात नहीं है।

System.UnauthorizedAccessException:
कॉलर के पास आवश्यक अनुमति नहीं है।

System.ArgumentException:
पथ एक शून्य-लंबाई स्ट्रिंग है, जिसमें केवल सफेद स्थान है, या जिसमें एक या अधिक अमान्य वर्ण हैं। आप System.IO.Path.GetInvalidPathChars पद्धति का उपयोग करके अमान्य वर्णों के लिए क्वेरी कर सकते हैं। -या- पथ के साथ उपसर्ग है, या समाहित है, केवल एक बृहदान्त्र वर्ण (:)।

System.ArgumentNullException:
पथ अशक्त है।

System.IO.PathTooLongException:
निर्दिष्ट पथ, फ़ाइल नाम या सिस्टम-निर्धारित अधिकतम लंबाई दोनों से अधिक है।

System.IO.DirectoryNotFoundException:
निर्दिष्ट पथ अमान्य है (उदाहरण के लिए, यह अनमैप ड्राइव पर है)।

System.NotSupportedException:
पथ में एक बृहदान्त्र वर्ण होता है (:) जो ड्राइव लेबल का हिस्सा नहीं है ("C:")।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.