CSharp___DllImport.Phone.IO.PathIsValidPath C# (CSharp) Method

PathIsValidPath() public static method

public static PathIsValidPath ( string fullPath ) : bool
fullPath string
return bool
            public static bool PathIsValidPath(string fullPath)
            {
                //Phone.IO.PathIsValidPath("//\\85*/*/-%&/()¨¨¨++'''¨'´`´´"); (false)
                //Phone.IO.PathIsValidPath("\\ABC123\\"); (true)

                return DllImportCaller.lib.StringCall("shcore", "PathIsValidPath", fullPath) == 1;
            }